/* ═══════════════════════════════════════════════════════
   Microtel Inn & Suites by Wyndham — Williston, ND
   style.css  |  SHARED STYLES — All Pages
   Fonts: DM Serif Display + Inter
═══════════════════════════════════════════════════════ */

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

/* ── DESIGN TOKENS ── */
:root {
  --teal:       #0d7f6e;
  --teal-d:     #085f53;
  --teal-l:     #3aaa96;
  --teal-pale:  #e6f5f2;
  --teal-xpale: #f0faf8;
  --slate:      #1e2d3d;
  --slate-d:    #111e2a;
  --slate-m:    #2e4560;
  --cream:      #f8faf9;
  --white:      #ffffff;
  --ink:        #0f1a14;
  --ink-m:      #4a5e56;
  --ink-l:      #8aa09a;
  --border:     #deeae6;
  --border-d:   #c4d8d2;
  --serif:      'DM Serif Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE ── */
html  { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; overscroll-behavior-x: none; }
body  { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: clip; overscroll-behavior-x: none; -webkit-font-smoothing: antialiased; }
img   { display: block; width: 100%; object-fit: cover; }
a     { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }

/* ═══════════════════════════════════════
   LOADER
═══════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--slate-d);
  display: flex; align-items: center; justify-content: center;
}
#ldInner { text-align: center; }
.ld-logo {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400; letter-spacing: 0.04em; color: #fff; opacity: 0;
}
.ld-m { color: var(--teal-l); font-style: italic; }
.ld-sub {
  font-size: 0.65rem; font-weight: 300; letter-spacing: 0.38em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-top: 10px; margin-bottom: 24px;
}
.ld-bar-track { width: 200px; height: 2px; background: rgba(255,255,255,0.1); margin: 0 auto; border-radius: 2px; overflow: hidden; }
.ld-bar { height: 100%; width: 0; background: var(--teal-l); border-radius: 2px; }

/* ═══════════════════════════════════════
   GLASSMORPHISM NAVBAR
═══════════════════════════════════════ */
#siteNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 0 5vw;
  background: rgba(17, 30, 42, 0.38);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s var(--ease), border-color 0.4s;
}
#siteNav.light {
  background: rgba(248, 250, 249, 0.92);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border-bottom: 1px solid rgba(13, 127, 110, 0.12);
}
.nav-inner {
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  max-width: 1280px; margin: 0 auto;
}

/* Logo */
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal); color: #fff;
  font-family: var(--serif); font-style: italic; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.25s;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.1rem; color: #fff; letter-spacing: 0.02em; transition: color 0.3s; }
.brand-sub  { font-size: 0.5rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 2px; transition: color 0.3s; }
#siteNav.light .brand-name { color: var(--slate); }
#siteNav.light .brand-sub  { color: var(--ink-l); }

/* Desktop links */
.nav-links { display: flex; gap: 0.2rem; }
.nav-links a {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); padding: 6px 10px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
#siteNav.light .nav-links a { color: var(--ink-m); }
#siteNav.light .nav-links a:hover { color: var(--teal-d); background: var(--teal-pale); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); padding: 6px 10px; border-radius: 6px;
  display: flex; align-items: center; cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle { color: #fff; background: rgba(255,255,255,0.08); }
#siteNav.light .nav-dropdown-toggle { color: var(--ink-m); }
#siteNav.light .nav-dropdown:hover .nav-dropdown-toggle { color: var(--teal-d); background: var(--teal-pale); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  padding-top: 8px;
  background: transparent;
  min-width: 200px; z-index: 200;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-dropdown-menu::before {
  content: '';
  display: block;
  position: absolute;
  inset: 8px 0 0 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(14,30,42,0.12);
  z-index: -1;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: none; }
.nav-dropdown-menu a {
  display: block; font-size: 0.73rem; font-weight: 400; color: var(--ink-m);
  padding: 8px 12px; border-radius: 7px;
  letter-spacing: 0.04em; text-transform: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--teal-xpale); color: var(--teal-d); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-book-btn {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 8px; background: var(--teal); color: #fff; border: none;
  transition: background 0.22s, transform 0.18s;
}
.nav-book-btn:hover { background: var(--teal-l); transform: translateY(-1px); }

/* Hamburger */
.nav-ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.nav-ham span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.8); transition: all 0.3s var(--ease-out); }
#siteNav.light .nav-ham span { background: var(--slate); }
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mob-drawer {
  position: fixed; inset: 0; z-index: 810;
  background: var(--slate-d);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
  padding: 2rem; opacity: 0; pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0s linear 0.35s;
}
.mob-drawer.open {
  opacity: 1; pointer-events: all;
  visibility: visible;
  transition: opacity 0.35s, visibility 0s;
}
.mob-close {
  position: absolute; top: 22px; right: 22px;
  background: rgba(255,255,255,0.08); border: none; border-radius: 8px;
  color: rgba(255,255,255,0.6); font-size: 1.1rem; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.mob-nav { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; width: 100%; margin-bottom: 2.5rem; }
.mob-nav a {
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  color: rgba(255,255,255,0.78); padding: 8px 24px; border-radius: 10px;
  transition: color 0.22s, background 0.22s; text-align: center;
}
.mob-nav a:hover { color: var(--teal-l); background: rgba(58,170,150,0.08); }
.mob-book-btn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 36px; border-radius: 10px; background: var(--teal);
  color: #fff; border: none; transition: background 0.22s;
}
.mob-book-btn:hover { background: var(--teal-l); }

/* ═══════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════ */
.sec { padding: 96px 8vw; }
.eyebrow {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.8rem; display: block;
}
.sec-h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400; line-height: 1.15; color: var(--ink);
}
.sec-h2 em { font-style: italic; color: var(--teal); }
.sec-sub { font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--ink-m); margin-top: 0.8rem; }
.body-text { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: var(--ink-m); margin-top: 1rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 1.8rem;
  font-size: 0.7rem; 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, gap 0.22s, border-color 0.22s;
}
.text-link:hover { color: var(--teal-d); gap: 10px; border-color: var(--teal-d); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 8px;
  background: var(--teal); color: #fff; border: none;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(13,127,110,0.4);
}
.btn-primary svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-primary:hover { background: var(--teal-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,127,110,0.45); }
.btn-primary--light { background: #fff; color: var(--teal-d); box-shadow: none; }
.btn-primary--light:hover { background: var(--teal-pale); color: var(--teal-d); box-shadow: none; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 8px;
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.22s, color 0.22s, background 0.22s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.06); }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25); transition: all 0.22s;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.06); }

/* ── SCROLL REVEAL ── */
.reveal    { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l  { opacity: 0; transform: translateX(-24px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r  { opacity: 0; transform: translateX(24px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal-r.in { opacity: 1; transform: none; }
.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-up.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--slate-d); padding: 64px 8vw 32px; }
.foot-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3.5rem;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.07);
  max-width: 1280px; margin: 0 auto;
}
.foot-logo { font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: 2px; }
.foot-logo-m { font-style: italic; color: var(--teal-l); }
.foot-brand-sub { font-size: 0.52rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1.2rem; }
.foot-address { font-size: 0.76rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.3); margin-top: 0.4rem; }
.foot-contact { font-size: 0.76rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.3); margin-top: 0.4rem; }
.foot-contact a { color: rgba(255,255,255,0.3); transition: color 0.22s; }
.foot-contact a:hover { color: var(--teal-l); }
.foot-col h5 { font-size: 0.56rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal-l); margin-bottom: 1.2rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.foot-col li a { font-size: 0.76rem; font-weight: 300; color: rgba(255,255,255,0.33); transition: color 0.22s; }
.foot-col li a:hover { color: rgba(255,255,255,0.8); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; flex-wrap: wrap; gap: 0.8rem;
  max-width: 1280px; margin: 0 auto;
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.08em; color: rgba(255,255,255,0.18);
}
.foot-soc { display: flex; gap: 1.2rem; }
.foot-soc a { font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.25); transition: color 0.22s; }
.foot-soc a:hover { color: var(--teal-l); }

/* ── SHARED SUBPAGE COMPONENTS ── */
/* Back button */
.d-back-btn {
  position: absolute; top: 80px; left: 5vw; z-index: 10;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); background: rgba(14,30,42,0.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  padding: 8px 18px; transition: all 0.22s; cursor: pointer;
}
.d-back-btn svg { width: 14px; height: 14px; }
.d-back-btn:hover { background: rgba(14,30,42,0.65); color: #fff; }

/* Subpage hero */
.d-hero { position: relative; height: 80vh; min-height: 540px; overflow: hidden; display: flex; align-items: flex-end; }
.d-hero-bg { position: absolute; inset: -12%; background-size: cover; background-position: center; will-change: transform; }
.d-hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,32,0.96) 0%, rgba(14,30,42,0.55) 45%, rgba(14,30,42,0.15) 75%, transparent 100%);
}
.d-hero-content { position: relative; z-index: 2; padding: 0 8vw 64px; width: 100%; max-width: 1280px; margin: 0 auto; }
.d-chip {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal-l); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px;
}
.d-chip::before { content: ''; width: 24px; height: 1px; background: var(--teal-l); }
.d-hero-title { font-family: var(--serif); font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 400; color: #fff; line-height: 1.08; }
.d-hero-title em { font-style: italic; color: var(--teal-l); }
.d-meta {
  display: flex; gap: 0; margin-top: 1.4rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem;
}
.d-meta span {
  font-size: 0.68rem; font-weight: 300; color: rgba(255,255,255,0.42); letter-spacing: 0.06em;
  padding-right: 1.8rem; margin-right: 1.8rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.d-meta span:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.d-meta strong { color: rgba(255,255,255,0.82); font-weight: 500; }

/* Subpage body layout */
.d-body { display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; padding: 72px 8vw; align-items: start; max-width: 1280px; margin: 0 auto; }
.d-section { margin-bottom: 3.5rem; }
.d-section:last-child { margin-bottom: 0; }
.d-eyebrow { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.36em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; display: block; }
.d-sec-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; color: var(--ink); margin-bottom: 1rem; line-height: 1.18; }
.d-section p { font-size: 0.88rem; font-weight: 300; line-height: 1.88; color: var(--ink-m); margin-bottom: 0.7rem; }

/* Sidebar */
.d-sidebar { position: sticky; top: 82px; }
.d-info-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.8rem;
  box-shadow: 0 4px 28px rgba(14,30,42,0.06);
}
.d-info-card--accent { border-top: 3px solid var(--teal); }
.dic-label { font-size: 0.56rem; font-weight: 600; letter-spacing: 0.36em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; display: block; }
.dic-title { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; color: var(--ink); margin-bottom: 0.8rem; line-height: 1.15; }
.dic-body { font-size: 0.78rem; font-weight: 300; line-height: 1.75; color: var(--ink-m); margin-bottom: 1.3rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--border); }
.dic-primary-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--teal); border: none; border-radius: 8px; padding: 13px;
  margin-bottom: 0.6rem; transition: background 0.22s, transform 0.18s;
}
.dic-primary-btn:hover { background: var(--teal-l); transform: translateY(-1px); }
.dic-secondary-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-d); background: transparent; border: 1px solid var(--teal-d);
  border-radius: 8px; padding: 11px; margin-bottom: 1.4rem; transition: background 0.22s, color 0.22s;
}
.dic-secondary-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.dic-perks { list-style: none; display: flex; flex-direction: column; gap: 0; }
.dic-perks li {
  font-size: 0.72rem; font-weight: 300; color: var(--ink-m);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.dic-perks li:last-child { border-bottom: none; }
.dic-perks li::before { content: '✓'; color: var(--teal); font-size: 0.7rem; flex-shrink: 0; }
.dic-quick { display: flex; flex-direction: column; gap: 0; margin-top: 0.6rem; }
.dic-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.74rem;
}
.dic-row:last-child { border-bottom: none; }
.dic-row span { font-weight: 300; color: var(--ink-l); }
.dic-row strong { font-weight: 500; color: var(--ink); }

/* Subpage amenities grid */
.d-amen-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 1rem;
  border-radius: 10px; overflow: hidden; border: 1px solid var(--border);
}
.d-amen-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 300; color: var(--ink-m);
  padding: 10px 14px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--white); transition: background 0.2s, color 0.2s;
}
.d-amen-item:hover { background: var(--teal-xpale); color: var(--ink); }
.d-amen-item:nth-child(even) { border-right: none; }
.d-amen-item:nth-last-child(-n+2):nth-child(odd),
.d-amen-item:last-child { border-bottom: none; }
.d-amen-item::before { content: '✦'; font-size: 0.5rem; color: var(--teal); flex-shrink: 0; transition: color 0.2s; }
.d-amen-item:hover::before { color: var(--teal-d); }

/* Subpage gallery */
.d-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 1.2rem; border-radius: 10px; overflow: hidden; }
.d-gimg { overflow: hidden; aspect-ratio: 1; position: relative; cursor: zoom-in; }
.d-gimg--wide { grid-column: span 2; aspect-ratio: 2/1; }
.d-gimg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s var(--ease-out), filter 0.4s; filter: brightness(0.85); }
.d-gimg-view-all {
  position: absolute; bottom: 9px; right: 9px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(11,20,30,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 7px;
  padding: 6px 11px; color: #fff;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; z-index: 2;
}
.d-gimg-view-all:hover { background: rgba(11,20,30,0.75); }
.d-gimg:hover img { transform: scale(1.06); filter: brightness(0.95); }
.d-gimg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,127,110,0);
  transition: background 0.3s;
  pointer-events: none;
}
.d-gimg:hover::after { background: rgba(13,127,110,0.08); }

/* Rooms grid (used on property-details) */
.d-rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.2rem; }
.d-room-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.d-room-card--featured { border: 2px solid var(--teal); }
.d-room-img { overflow: hidden; aspect-ratio: 4/3; }
.d-room-img img { transition: transform 0.6s var(--ease-out); filter: brightness(0.88); }
.d-room-card:hover .d-room-img img { transform: scale(1.05); }
.d-room-body { padding: 1rem 1.1rem; }
.d-room-cat { font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.25rem; font-weight: 600; display: block; }
.d-room-name { font-family: var(--serif); font-size: 0.95rem; color: var(--ink); margin-bottom: 0.25rem; }
.d-room-price { font-size: 0.74rem; font-weight: 300; color: var(--ink-m); }
.d-room-detail-btn {
  display: inline-flex; align-items: center; margin-top: 0.7rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-pale); border: none; border-radius: 6px;
  padding: 7px 14px; transition: background 0.22s; cursor: pointer;
}
.d-room-detail-btn:hover { background: var(--teal); color: #fff; }

/* ═══════════════════════════════════════
   ENQUIRY SECTION
═══════════════════════════════════════ */
.enquiry-sec { background: var(--cream); }
.enquiry-inner {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 5vw; align-items: start;
  max-width: 1280px; margin: 0 auto;
}

/* Contact info side */
.enquiry-contact-cards {
  display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem;
}
.enq-contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.2rem;
  transition: border-color 0.22s, box-shadow 0.22s; text-decoration: none;
}
a.enq-contact-item:hover {
  border-color: var(--teal); box-shadow: 0 4px 16px rgba(13,127,110,0.1);
}
.enq-contact-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--teal-pale); border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--teal);
}
.enq-contact-icon svg { width: 18px; height: 18px; }
.enq-contact-label {
  display: block; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-l); margin-bottom: 2px;
}
.enq-contact-val {
  display: block; font-size: 0.84rem; font-weight: 500; color: var(--ink);
}

/* Tip note */
.enquiry-note {
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.8rem;
  background: var(--teal-xpale); border: 1px solid var(--teal-pale);
  border-left: 3px solid var(--teal); border-radius: 10px; padding: 1rem 1.2rem;
}
.enq-note-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.enquiry-note strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.enquiry-note p { font-size: 0.75rem; font-weight: 300; line-height: 1.65; color: var(--ink-m); margin: 0; }

/* Form card */
.enquiry-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.2rem;
  box-shadow: 0 6px 36px rgba(14,30,42,0.07);
}
.enquiry-form { display: flex; flex-direction: column; gap: 1.1rem; }
.enq-form-row { display: flex; gap: 1rem; }
.enq-form-row--2 > .enq-field { flex: 1; }
.enq-field { display: flex; flex-direction: column; gap: 0.4rem; }
.enq-field label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-m);
}
.enq-req { color: var(--teal); }
.enq-field input,
.enq-field select,
.enq-field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.85rem; font-weight: 300;
  color: var(--ink); background: var(--cream);
  border: 1px solid var(--border-d); border-radius: 8px; padding: 11px 14px;
  transition: border-color 0.22s, box-shadow 0.22s; outline: none;
}
.enq-field input::placeholder,
.enq-field textarea::placeholder { color: var(--ink-l); }
.enq-field input:focus,
.enq-field select:focus,
.enq-field textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,127,110,0.1);
  background: var(--white);
}
.enq-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238aa09a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.enq-field input[type="date"] { cursor: pointer; }
.enq-field textarea { resize: vertical; min-height: 110px; line-height: 1.65; }

.enq-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 0.4rem;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 14px 28px; border-radius: 9px;
  background: var(--teal); color: #fff; border: none; cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(13,127,110,0.35);
}
.enq-submit-btn svg { width: 14px; height: 14px; }
.enq-submit-btn:hover { background: var(--teal-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,127,110,0.4); }

.enq-form-note {
  font-size: 0.68rem; font-weight: 300; color: var(--ink-l); text-align: center;
  line-height: 1.55; margin-top: 0.2rem;
}
.enq-form-note strong { color: var(--ink-m); font-weight: 500; }

.enq-success {
  display: flex; align-items: center; gap: 10px;
  background: var(--teal-pale); border: 1px solid var(--teal);
  border-radius: 9px; padding: 12px 16px;
  font-size: 0.8rem; font-weight: 500; color: var(--teal-d);
}
.enq-success[hidden] { display: none !important; }
.enq-success-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

.enq-error {
  display: flex; align-items: center; gap: 10px;
  background: #fff2f2; border: 1px solid #e05c5c;
  border-radius: 9px; padding: 12px 16px;
  font-size: 0.8rem; font-weight: 500; color: #b32929;
}
.enq-error[hidden] { display: none !important; }
.enq-error-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: #e05c5c; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}

.enq-contact-item--static { cursor: default; pointer-events: none; }


/* ═══════════════════════════════════════
   SHARED — FAQ ACCORDION (ext-faq-*)
   Used on: extended-stay, corporate, amenities
═══════════════════════════════════════ */
.ext-faq { display: flex; flex-direction: column; gap: 0; margin-top: 1.4rem; }

.ext-faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.ext-faq-item:first-child { border-top: 1px solid var(--border); border-radius: 12px 12px 0 0; }
.ext-faq-item:last-child  { border-radius: 0 0 12px 12px; }

.ext-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.1rem 1.3rem;
  cursor: pointer;
  font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--ink);
  list-style: none; user-select: none;
  transition: background 0.2s, color 0.2s;
}
.ext-faq-q::-webkit-details-marker { display: none; }
.ext-faq-q::marker { display: none; }
.ext-faq-q:hover { background: var(--teal-xpale); color: var(--teal-d); }

.ext-faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--teal-pale);
  transition: transform 0.3s var(--ease-out), background 0.2s;
}
.ext-faq-icon svg { width: 14px; height: 14px; stroke: var(--teal); transition: stroke 0.2s; }

.ext-faq-item[open] .ext-faq-q    { color: var(--teal-d); background: var(--teal-xpale); }
.ext-faq-item[open] .ext-faq-icon { transform: rotate(180deg); background: var(--teal); }
.ext-faq-item[open] .ext-faq-icon svg { stroke: #fff; }

.ext-faq-a { padding: 0 1.3rem 1.2rem 1.3rem; animation: faqOpen 0.28s var(--ease-out); }
.ext-faq-a p { font-size: 0.84rem; font-weight: 300; line-height: 1.8; color: var(--ink-m); margin: 0; }

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════
   SHARED — BOTTOM CTA BANNER (ext-cta-*)
   Used on: extended-stay, corporate, amenities
═══════════════════════════════════════ */
.ext-cta-banner {
  margin: 4rem -6vw 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 6vw;
}
.ext-cta-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start;
}
.ext-cta-eyebrow {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.5rem; display: block;
}
.ext-cta-title {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--ink);
  line-height: 1.2; margin-bottom: 0.8rem;
}
.ext-cta-sub {
  font-size: 0.86rem; font-weight: 300; line-height: 1.8; color: var(--ink-m); margin-bottom: 1.4rem;
}
.ext-cta-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
.ext-cta-perks span { font-size: 0.72rem; font-weight: 400; color: var(--ink-m); }

.ext-cta-info {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  margin-bottom: 1rem;
}
.ext-cta-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.ext-cta-info-row:last-child { border-bottom: none; }
.ext-cta-info-row span   { font-size: 0.7rem; font-weight: 300; color: var(--ink-l); }
.ext-cta-info-row strong { font-size: 0.7rem; font-weight: 500; color: var(--ink); }

.ext-cta-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--teal); border-radius: 10px; padding: 13px;
  margin-bottom: 0.6rem; transition: background 0.22s, transform 0.18s;
}
.ext-cta-btn-primary svg { width: 13px; height: 13px; flex-shrink: 0; }
.ext-cta-btn-primary:hover { background: var(--teal-l); transform: translateY(-1px); }

.ext-cta-btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-d); background: transparent; border: 1px solid var(--teal-d);
  border-radius: 10px; padding: 11px; margin-bottom: 1.2rem;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.ext-cta-btn-secondary svg { width: 13px; height: 13px; flex-shrink: 0; }
.ext-cta-btn-secondary:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.ext-cta-links { display: flex; flex-direction: column; gap: 0; }
.ext-cta-links a {
  font-size: 0.72rem; font-weight: 500; color: var(--teal);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px; transition: gap 0.2s, color 0.2s;
}
.ext-cta-links a:last-child { border-bottom: none; }
.ext-cta-links a:hover { color: var(--teal-d); gap: 10px; }

/* ═══════════════════════════════════════
   RESPONSIVE — SHARED
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .d-body          { grid-template-columns: 1fr; padding: 56px 6vw; }
  .d-sidebar       { position: static; }
  .foot-inner      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  /* Enquiry form — collapse to single column on all sub-pages */
  .enquiry-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .enquiry-form-wrap { padding: 1.8rem; }
  /* Shared CTA banner — collapse on all sub-pages */
  .ext-cta-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-book-btn { display: none; }
  .nav-ham { display: flex; }
  .sec { padding: 72px 5vw; }
  .d-rooms-grid { grid-template-columns: 1fr; }
  .d-amen-grid  { grid-template-columns: 1fr; }
  .d-amen-item  { border-right: none; }
  .d-gallery    { grid-template-columns: 1fr 1fr; }
  .d-gimg--wide { grid-column: span 2; }
  .foot-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom  { flex-direction: column; align-items: flex-start; }
  /* Enquiry form — stack name/phone row, reduce padding */
  .enq-form-row--2  { flex-direction: column; gap: 1.1rem; }
  /* Shared CTA banner — adjust bleed margins to match narrower padding */
  .ext-cta-banner   { margin: 3rem -5vw 0; padding: 3rem 5vw; }
  .ext-cta-perks    { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .d-meta { gap: 1rem; }
  /* Enquiry form — tighter padding and full-width submit */
  .enquiry-form-wrap { padding: 1.3rem; }
  .enq-submit-btn    { width: 100%; }
}

/* ═══════════════════════════════════════
   PHOTO LIGHTBOX
═══════════════════════════════════════ */
.lb-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6, 12, 18, 0.96);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s;
}
.lb-overlay.lb-open { opacity: 1; pointer-events: all; }

.lb-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; flex-shrink: 0;
}
.lb-counter {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.lb-close {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
.lb-close svg { width: 16px; height: 16px; }

.lb-stage {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 0 14px; min-height: 0; position: relative;
}
.lb-img-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  max-height: 100%; overflow: hidden;
}
.lb-img-wrap img {
  max-width: 100%; max-height: calc(100vh - 210px);
  object-fit: contain; border-radius: 6px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.8);
  transition: opacity 0.18s ease;
}
.lb-img-wrap img.lb-fading { opacity: 0; }

.lb-prev, .lb-next {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.18s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.16); color: #fff; transform: scale(1.07); }
.lb-prev svg, .lb-next svg { width: 20px; height: 20px; }

.lb-caption {
  flex-shrink: 0; text-align: center; padding: 8px 80px 4px;
  font-size: 0.7rem; font-weight: 300; line-height: 1.5;
  color: rgba(255,255,255,0.36);
}

.lb-thumbs {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 10px 16px 18px;
  overflow-x: auto; scrollbar-width: none;
}
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb {
  width: 58px; height: 42px; border-radius: 5px; overflow: hidden;
  border: 2px solid transparent; flex-shrink: 0; cursor: pointer; padding: 0;
  opacity: 0.45; transition: opacity 0.2s, border-color 0.2s;
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.lb-thumb.lb-thumb-active { border-color: var(--teal); opacity: 1; }
.lb-thumb:hover:not(.lb-thumb-active) { opacity: 0.72; }

@media (max-width: 768px) {
  .lb-prev, .lb-next { width: 40px; height: 40px; }
  .lb-prev svg, .lb-next svg { width: 17px; height: 17px; }
  .lb-caption { padding: 6px 16px 4px; }
  .lb-img-wrap img { max-height: calc(100vh - 200px); }
  .lb-thumb { width: 46px; height: 34px; }
}
@media (max-width: 480px) {
  .lb-stage { padding: 0 6px; }
  .lb-prev, .lb-next { width: 34px; height: 34px; }
  .lb-prev svg, .lb-next svg { width: 14px; height: 14px; }
  .lb-img-wrap img { max-height: calc(100vh - 195px); border-radius: 4px; }
  .lb-thumb { width: 40px; height: 30px; }
}

/* ═══════════════════════════════════════════════════════
   PAGE ANCHOR NAV — shared sticky section nav (meetings, corporate, etc.)
═══════════════════════════════════════════════════════ */
.page-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);
}
.page-anchor-inner {
  display: flex; align-items: center; overflow-x: auto;
  scrollbar-width: none; max-width: 1280px; margin: 0 auto; padding: 0 5vw;
}
.page-anchor-inner::-webkit-scrollbar { display: none; }
.page-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;
}
.page-anchor-link svg { opacity: 0.55; transition: opacity 0.2s; flex-shrink: 0; }
.page-anchor-link:hover { color: var(--teal-d); border-bottom-color: var(--teal); }
.page-anchor-link:hover svg { opacity: 1; }
.page-anchor-link.active { color: var(--teal-d); border-bottom-color: var(--teal); font-weight: 600; }
.page-anchor-link.active svg { opacity: 1; }
