/* ============================================================
   BEST WESTERN EXTENDED STAY — VERNAL, UTAH
   styles.css  |  Shared stylesheet for all hotel pages
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --navy: #1a2e52;
  --navy-dark: #0e1c33;
  --gold: #c9a84c;
  --gold-light: #e0bb5a;
  --cream: #fdf8f0;
  --soft: #f4f1ec;
  --white: #ffffff;
  --text: #1c1c1c;
  --muted: #6b6b6b;
  --t: .35s cubic-bezier(.4, 0, .2, 1);

  --navy-rgb: 26, 46, 82;
  --navy-dark-rgb: 14, 28, 51;
  --gold-rgb: 201, 168, 76;
  --cream-rgb: 253, 248, 240;
  --white-rgb: 255, 255, 255;
  --doordash-rgb: 255, 48, 8;
  --ubereats-rgb: 6, 193, 103;
}

/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(10, 20, 45, 0);
  transition: background .4s, box-shadow .4s, height .3s;
}
#nav.scrolled {
  background: rgba(var(--navy-dark-rgb), 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .35);
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 700;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
  transition: transform .3s ease;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.08); }
.nav-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 3px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: rgba(var(--white-rgb), 0.85);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--t);
}
.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.nav-active,
.nav-drop-trigger.nav-active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* ── Home Dropdown ── */
.nav-drop-wrap {
  position: relative;
}
.nav-drop-trigger {
  cursor: pointer;
  color: rgba(var(--white-rgb),.85);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--t);
  white-space: nowrap;
}
.nav-drop-wrap:hover .nav-drop-trigger { color: var(--gold); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(var(--navy-dark-rgb), 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, var(--gold), transparent 80%);
  border-radius: 8px;
  list-style: none;
  min-width: 175px;
  padding: 8px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  z-index: 2000;
  animation: dropFade .22s ease both;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid color-mix(in srgb, var(--gold), transparent 65%);
}
@keyframes dropFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-drop-wrap:hover .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: 11px 20px;
  color: rgba(var(--white-rgb),.8) !important;
  font-size: .78rem !important;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s, padding-left .2s;
  border-radius: 4px;
  margin: 0 6px;
}
.nav-dropdown li a:hover {
  background: rgba(201,168,76,.12);
  color: var(--gold) !important;
  padding-left: 26px;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--t), transform .2s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: scale(1.03);
  color: var(--navy) !important;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mmenu {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mmenu.open { display: flex; }
.mmenu a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}
.mmenu a:hover { color: var(--gold); }

/* ── Nav Phone ── */
.nav-phone {
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: .03em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity .2s;
}
.nav-phone:hover { opacity: .75; }
@media (max-width: 900px) { .nav-phone { display: none; } }

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,45,.5), rgba(10,20,45,.75));
}
.hero-cnt {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  animation: fadeUp 1.2s ease both;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.htitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.htitle em { color: var(--gold); }

.hsub {
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: .9;
  margin-bottom: 38px;
  max-width: 600px;
}

.hbtns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero dots */
.hdots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
}
.hdot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  right: 40px;
  color: rgba(255, 255, 255, .45);
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(var(--white-rgb),.4));
}

/* ============================================================
   BUTTONS  (reusable across all pages)
   ============================================================ */
.btn-p {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 36px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .82rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background var(--t), transform .2s;
  display: inline-block;
}
.btn-p:hover {
  background: var(--gold-light);
  transform: scale(1.04);
}

.btn-s {
  border: 2px solid rgba(var(--white-rgb), 0.7);
  color: #fff;
  padding: 14px 36px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .82rem;
  text-decoration: none;
  border-radius: 4px;
  transition: border-color var(--t), background var(--t);
  display: inline-block;
}
.btn-s:hover {
  border-color: #fff;
  background: rgba(var(--white-rgb), 0.12);
}

/* ============================================================
   PERKS BAR
   ============================================================ */
.pbar {
  background: var(--navy);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pi {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .1);
}
.pi:last-child { border-right: none; }
.pi .ic    { font-size: 1.2rem; }
.pi .label { font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pi .sub   { font-size: .68rem; font-weight: 300; opacity: .6; letter-spacing: .5px; }

/* ============================================================
   SECTION HEADER  (reusable)
   ============================================================ */
.sh {
  text-align: center;
  padding: 80px 20px 50px;
  max-width: 700px;
  margin: 0 auto;
}
.sh .tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sh h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.gline {
  width: 55px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto;
  border-radius: 2px;
}
.sh p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   ROOM TABS
   ============================================================ */
.rooms-sec { background: var(--white); padding-bottom: 80px; }

.tabnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 40px;
}
.tbtn {
  padding: 10px 22px;
  border-radius: 25px;
  border: 2px solid #ddd;
  background: transparent;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  transition: all var(--t);
}
.tbtn:hover       { border-color: var(--navy); color: var(--navy); }
.tbtn.active      { background: var(--navy); border-color: var(--navy); color: #fff; }

.tpanel           { display: none; }
.tpanel.active    { display: block; animation: fi .4s ease; }

@keyframes fi {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FEATURE BLOCKS
   ============================================================ */
.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}
.feat.rev .fi { order: 1; }
.feat.rev .ft { order: 0; }

.fi {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  display: block;
}
.fi:hover img { transform: scale(1.05); }

/* Zoom icon that appears on hover */
.fiz {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .9);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.fi:hover .fiz { opacity: 1; pointer-events: all; }

.ft {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
}
.ftag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ftitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px;
}
.fdesc {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 24px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.t {
  background: var(--soft);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .77rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
}

/* ============================================================
   PHOTO GALLERY GRID
   ============================================================ */
.gal-sec { background: var(--soft); padding: 80px 0; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px;
  padding: 0 6px;
}
.gi {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  cursor: pointer;
  background: #ccc;
}
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.9);
  display: block;
}
.gi:hover img   { transform: scale(1.07); filter: brightness(1); }
.gi-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,45,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gi:hover .gi-ov { opacity: 1; }
.gi-label {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gi.wide { grid-column: span 2; }

/* ============================================================
   PULL QUOTE BANNER
   ============================================================ */
.quote {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  max-width: 750px;
  margin: 0 auto 16px;
  line-height: 1.55;
}
.quote cite {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 3px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

/* ============================================================
   BREAKFAST / FULL-WIDTH IMAGE BANNER
   ============================================================ */
.bkhero {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bkhero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.bkov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,45,.9), rgba(10,20,45,.55));
}
.bkcnt {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 20px;
  max-width: 640px;
}
.bkcnt .tag {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bkcnt h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.bkcnt p {
  font-size: .97rem;
  line-height: 1.8;
  opacity: .9;
  font-weight: 300;
}

/* ============================================================
   AMENITIES CARDS
   ============================================================ */
.amen-sec {
  padding: 80px 40px;
  text-align: center;
  background: var(--white);
}
.amen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 50px auto 0;
}
.ac {
  background: var(--soft);
  border-radius: 12px;
  padding: 30px 16px;
  transition: transform var(--t), box-shadow var(--t);
}
.ac:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,.1); }
.ac .aic  { font-size: 2.2rem; margin-bottom: 12px; }
.ac h3    { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.ac p     { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   LOCATION SPLIT SECTION
   ============================================================ */
.loc-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.loc-img { overflow: hidden; position: relative; }
.loc-img img { width: 100%; height: 100%; object-fit: cover; }

.loc-txt {
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
.loc-txt .tag {
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.loc-txt h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 18px;
  line-height: 1.25;
}
.loc-txt p {
  opacity: .8;
  line-height: 1.8;
  font-size: .95rem;
  font-weight: 300;
  margin-bottom: 20px;
}
.loc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.loc-list li { display: flex; align-items: center; gap: 10px; font-size: .88rem; opacity: .85; }
.loc-list li::before { content: '→'; color: var(--gold); font-weight: 900; }

/* ============================================================
   CALL TO ACTION SECTION
   ============================================================ */
.cta {
  position: relative;
  background: var(--cream);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
}
.cta p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  font-weight: 300;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-info {
  margin-top: 24px;
  font-size: .88rem;
  color: var(--muted);
  position: relative;
}
.cta-info strong { color: var(--navy); }
.cta-info a      { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(var(--white-rgb), 0.55);
  text-align: center;
  padding: 40px 20px;
  font-size: .8rem;
}
.flogo {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.flinks {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.flinks a {
  color: rgba(var(--white-rgb), 0.6);
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.flinks a:hover { color: var(--gold); }
footer a         { color: var(--gold); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 10, 25, .97);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
#lb.open { display: flex; }

#lb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .7);
  transition: opacity .3s;
}
#lb-cap {
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  letter-spacing: 2px;
  margin-top: 16px;
  text-transform: uppercase;
}

.lbn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lbn:hover    { background: rgba(201, 168, 76, .5); }
#lbprev       { left: 20px; }
#lbnext       { right: 20px; }

#lbclose {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--t);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
#lbclose:hover { background: rgba(255, 80, 80, .5); }

.lbcount {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .45);
  font-size: .75rem;
  letter-spacing: 2px;
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
#stop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  background: var(--navy);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, background .3s, transform .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}
#stop.show  { opacity: 1; pointer-events: all; }
#stop:hover { background: var(--gold); color: var(--navy); transform: scale(1.08); }

/* ============================================================
   SCROLL REVEAL UTILITY
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.rv.on { opacity: 1; transform: translateY(0); }
.d1    { transition-delay: .1s; }
.d2    { transition-delay: .2s; }
.d3    { transition-delay: .3s; }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   WATCH OUR STORY BANNER
   ============================================================ */
.story-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.story-banner:hover .sb-bg { transform: scale(1.04); }

.sb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out, transform .8s ease;
}
.story-banner.on .sb-bg { transform: scale(1); }

.sb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 25, .65) 0%,
    rgba(5, 10, 25, .55) 50%,
    rgba(5, 10, 25, .78) 100%
  );
  transition: background .5s ease;
}
.story-banner:hover .sb-overlay {
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 25, .5) 0%,
    rgba(5, 10, 25, .4) 50%,
    rgba(5, 10, 25, .65) 100%
  );
}

.sb-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  pointer-events: none;
}
.story-banner a { pointer-events: all; }

.sb-eyebrow {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.sb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.sb-sub {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(.88rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

/* Animated play button */
.sb-play-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  text-decoration: none;
  margin-bottom: 14px;
}

.sb-play-icon {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  color: var(--gold);
  margin-left: 5px;
  transition: transform .3s ease, color .3s;
}
.sb-play-btn:hover .sb-play-icon {
  transform: scale(1.18);
  color: #fff;
}

.sb-play-btn::before,
.sb-play-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, .5);
  transition: border-color .3s;
}
.sb-play-btn::before {
  background: rgba(201, 168, 76, .15);
  transition: background .3s;
}
.sb-play-btn::after {
  animation: sb-pulse 2.4s ease-out infinite;
  border-color: rgba(201, 168, 76, .3);
}
.sb-play-btn:hover::before {
  background: rgba(201, 168, 76, .28);
  border-color: rgba(201, 168, 76, .9);
}
.sb-play-btn:hover::after { animation-play-state: paused; }

@keyframes sb-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.9); opacity: 0;  }
}

.sb-hint {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .feat,
  .feat.rev,
  .loc-sec       { grid-template-columns: 1fr; }
  .feat.rev .fi  { order: 0; }
  .feat.rev .ft  { order: 1; }
  .fi            { height: 280px; }
  .ft            { padding: 36px 28px; }
  .loc-img       { height: 250px; }
  .loc-txt       { padding: 40px 28px; }
  .pbar          { flex-direction: column; align-items: center; }
  .pi            { border-right: none; border-bottom: 1px solid rgba(var(--white-rgb),.1); width: 100%; justify-content: center; }
  .gi.wide       { grid-column: span 1; }
  .nav-links,
  .nav-cta       { display: none; }
  .burger        { display: flex; }
  #nav           { padding: 0 20px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .gal-grid      { grid-template-columns: 1fr 1fr; }
  .htitle        { font-size: 2.4rem; }
  .amen-grid     { grid-template-columns: 1fr 1fr; }
  .cta-btns      { flex-direction: column; align-items: center; }
  #lbprev        { left: 6px; }
  #lbnext        { right: 6px; }
  .lbn           { width: 40px; height: 40px; font-size: 1rem; }
}

/* ============================================================
   VIDEO PRESENTATION  (video.html)
   ============================================================ */

body.video-page { background: #000; }

#stage {
  position: relative; width: 100vw; height: 100vh;
  overflow: hidden; background: #000;
}

.scene {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.scene.active { opacity: 1; z-index: 2; }
.scene.exit   { opacity: 0; z-index: 1; }

.scene-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}
.scene.active .scene-bg { transform: scale(1); }

.kb-right .scene-bg { transform-origin: left center; }
.kb-left  .scene-bg { transform-origin: right center; }
.kb-up    .scene-bg { transform-origin: center bottom; }
.kb-down  .scene-bg { transform-origin: center top; }

.scene-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,10,25,.72) 0%, rgba(5,10,25,.3) 60%, rgba(5,10,25,.55) 100%);
}
.scene-ov.right  { background: linear-gradient(to right, rgba(5,10,25,.82) 0%, rgba(5,10,25,.15) 60%, transparent 100%); }
.scene-ov.center { background: radial-gradient(ellipse at center, rgba(5,10,25,.3) 0%, rgba(5,10,25,.78) 100%); }
.scene-ov.bottom { background: linear-gradient(to top, rgba(5,10,25,.9) 0%, rgba(5,10,25,.2) 60%, rgba(5,10,25,.5) 100%); }

#grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.scene-caption {
  position: relative; z-index: 10;
  padding: 0 10vw; max-width: 900px;
  pointer-events: none;
}
.cap-eyebrow {
  font-size: .68rem; font-weight: 900; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: .3s;
  display: flex; align-items: center; gap: 10px;
}
.cap-eyebrow::before {
  content: ''; width: 30px; height: 1px;
  background: var(--gold); opacity: .7; flex-shrink: 0;
}
.cap-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  color: #fff; line-height: 1.1; margin-bottom: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: .55s;
}
.cap-title em { color: var(--gold); font-style: italic; }
.cap-sub {
  font-size: clamp(.95rem, 1.8vw, 1.2rem); font-weight: 300;
  color: rgba(var(--white-rgb),.88); line-height: 1.75; max-width: 600px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: .8s;
}
.cap-cta {
  margin-top: 28px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: 1s;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.cap-cta a {
  background: var(--gold); color: var(--navy);
  padding: 13px 30px; border-radius: 4px;
  font-weight: 900; font-size: .8rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: background .3s, transform .2s;
}
.cap-cta a:hover { background: var(--gold-light); transform: scale(1.04); }
.cap-cta .phone {
  color: rgba(var(--white-rgb),.7); font-size: .85rem;
  font-weight: 300; letter-spacing: 1px;
}
.cap-cta .phone strong { color: var(--gold); font-weight: 700; }
.scene.active .cap-eyebrow,
.scene.active .cap-title,
.scene.active .cap-sub,
.scene.active .cap-cta { opacity: 1; transform: translateY(0); }

.scene-num {
  position: absolute; top: 80px; right: 40px; z-index: 10;
  color: rgba(var(--white-rgb),.35); font-size: .7rem;
  letter-spacing: 3px; font-weight: 700; text-align: right;
}
.scene-num span { color: #fff; font-size: 1.1rem; font-weight: 900; }

.thumb-strip {
  position: absolute; bottom: 110px; right: 0; z-index: 20;
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 20px; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
#stage:hover .thumb-strip { opacity: 1; pointer-events: all; }
.thumb {
  width: 54px; height: 36px; border-radius: 3px;
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .3s, transform .2s; flex-shrink: 0;
}
.thumb.active { border-color: var(--gold); }
.thumb:hover  { transform: scaleX(1.08); border-color: rgba(var(--white-rgb),.6); }
.thumb img    { width: 100%; height: 100%; object-fit: cover; display: block; }

#controls {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 50;
  padding: 50px 32px 20px;
  background: linear-gradient(to top, rgba(5,10,25,.9) 0%, transparent 100%);
}
#progress-track {
  height: 3px; background: rgba(var(--white-rgb),.15); border-radius: 2px;
  margin-bottom: 14px; cursor: pointer; position: relative;
  transition: height .2s, margin-top .2s;
}
#progress-track:hover { height: 5px; margin-top: -1px; }
#progress-fill {
  height: 100%; background: var(--gold); border-radius: 2px;
  width: 0%; transition: width .25s linear; position: relative;
}
#progress-fill::after {
  content: ''; position: absolute; right: -5px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,.8);
}
.chapter-dot {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(var(--white-rgb),.4); pointer-events: none;
}
.ctrl-row { display: flex; align-items: center; justify-content: space-between; }
.ctrl-left, .ctrl-right { display: flex; align-items: center; gap: 14px; }
.ctrl-btn {
  background: none; border: none; color: #fff; cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background .2s, color .2s;
}
.ctrl-btn:hover { background: rgba(var(--white-rgb),.12); color: var(--gold); }
#play-pause { font-size: 1.3rem; }
.ctrl-time {
  font-size: .75rem; color: rgba(var(--white-rgb),.6); letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}
.ctrl-time span { color: #fff; }
.scene-title-bar {
  font-size: .78rem; font-weight: 700; letter-spacing: 1px;
  color: rgba(var(--white-rgb),.7); text-transform: uppercase;
  max-width: 280px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
#btn-fs { font-size: .95rem; }
.speed-badge {
  font-size: .68rem; font-weight: 900; letter-spacing: 1px;
  color: var(--gold); border: 1px solid rgba(201,168,76,.4);
  padding: 3px 8px; border-radius: 3px;
  cursor: pointer; transition: background .2s;
}
.speed-badge:hover { background: rgba(201,168,76,.1); }
.vol-wrap { display: flex; align-items: center; gap: 8px; }
.vol-icon { font-size: .85rem; color: rgba(var(--white-rgb),.6); }
.vol-track {
  width: 60px; height: 3px; background: rgba(var(--white-rgb),.2);
  border-radius: 2px; cursor: pointer; position: relative;
}
.vol-fill { height: 100%; width: 75%; background: rgba(var(--white-rgb),.6); border-radius: 2px; }

#intro {
  position: absolute; inset: 0; z-index: 100;
  background: #000; display: flex; align-items: center;
  justify-content: center; flex-direction: column;
  transition: opacity .8s ease;
}
#intro.hide { opacity: 0; pointer-events: none; }
.intro-logo {
  font-family: 'Playfair Display', serif; color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem); text-align: center;
  margin-bottom: 8px; animation: fadeUp 1s ease .3s both;
}
.intro-logo em { color: var(--gold); }
.intro-sub {
  color: rgba(var(--white-rgb),.5); font-size: .8rem; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 40px;
  animation: fadeUp 1s ease .6s both;
}
.intro-play {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--gold); background: rgba(201,168,76,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.6rem; color: var(--gold);
  transition: background .3s, transform .2s;
  animation: fadeUp 1s ease .9s both;
}
.intro-play:hover { background: rgba(201,168,76,.25); transform: scale(1.08); }
.intro-play::before { content: '▶'; margin-left: 4px; }
.intro-hint {
  margin-top: 18px; color: rgba(var(--white-rgb),.3);
  font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
  animation: fadeUp 1s ease 1.1s both;
}
.intro-ring {
  position: absolute; width: 90px; height: 90px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  animation: pulse-ring 2s ease infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

#outro {
  position: absolute; inset: 0; z-index: 90;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 40px;
  opacity: 0; pointer-events: none; transition: opacity .8s ease;
}
#outro.show { opacity: 1; pointer-events: all; }
.outro-eyebrow {
  font-size: .7rem; letter-spacing: 5px; color: var(--gold);
  text-transform: uppercase; font-weight: 700; margin-bottom: 16px;
}
.outro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem); color: #fff;
  line-height: 1.15; margin-bottom: 14px;
}
.outro-title em { color: var(--gold); }
.outro-sub {
  color: rgba(var(--white-rgb),.65); font-size: 1rem;
  font-weight: 300; margin-bottom: 36px; line-height: 1.7; max-width: 480px;
}
.outro-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.outro-btns a {
  padding: 13px 28px; border-radius: 4px; font-weight: 900;
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: background .3s, transform .2s;
}
.outro-btns .ob-book { background: var(--gold); color: var(--navy); }
.outro-btns .ob-book:hover { background: var(--gold-light); transform: scale(1.03); }
.outro-btns .ob-replay { border: 2px solid rgba(var(--white-rgb),.3); color: #fff; background: transparent; }
.outro-btns .ob-replay:hover { border-color: rgba(var(--white-rgb),.7); background: rgba(var(--white-rgb),.06); }
.outro-divider { width: 50px; height: 2px; background: var(--gold); margin: 0 auto 24px; border-radius: 2px; }
.outro-address {
  margin-top: 28px; color: rgba(var(--white-rgb),.35);
  font-size: .75rem; letter-spacing: 1.5px; line-height: 1.8;
}
.outro-address a { color: var(--gold); text-decoration: none; }
.outro-address a:hover { text-decoration: underline; }
.star-row { color: var(--gold); letter-spacing: 4px; margin-bottom: 16px; }

#loader {
  position: absolute; inset: 0; z-index: 200;
  background: #000; display: flex; align-items: center;
  justify-content: center; flex-direction: column;
  transition: opacity .6s ease;
}
#loader.done { opacity: 0; pointer-events: none; }
.loader-bar-track {
  width: 200px; height: 2px; background: rgba(var(--white-rgb),.15);
  border-radius: 2px; overflow: hidden; margin-top: 20px;
}
.loader-bar-fill {
  height: 100%; background: var(--gold); border-radius: 2px;
  width: 0%; transition: width .1s linear;
}
.loader-label {
  font-size: .68rem; letter-spacing: 4px; color: rgba(var(--white-rgb),.4);
  text-transform: uppercase; margin-top: 12px;
}
.loader-logo {
  font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.6rem; letter-spacing: 2px;
}

@media (max-width: 768px) {
  .scene-caption { padding: 0 24px; }
  .cap-title { font-size: 2rem; }
  .thumb-strip { display: none; }
  .ctrl-right .speed-badge { display: none; }
  .vol-wrap { display: none; }
  #controls { padding: 0 16px 14px; }
  .scene-num { top: 70px; right: 16px; }
}

/* ============================================================
   HERO — KEN BURNS BACKGROUND  (index.html)
   ============================================================ */
.hero-kb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-slide.kb-right .hero-kb { transform-origin: left center; }
.hero-slide.kb-left  .hero-kb { transform-origin: right center; }
.hero-slide.kb-up    .hero-kb { transform-origin: center bottom; }
.hero-slide.kb-down  .hero-kb { transform-origin: center top; }

/* ============================================================
   OWNER STORY SECTION
   ============================================================ */
.owner-sec {
  background: var(--cream);
  padding: 100px 60px;
}
.owner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.owner-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: static;
}
.owner-sig {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.owner-sig-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.owner-sig-title {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: .5px;
  line-height: 1.5;
}
.owner-right { padding-top: 8px; }
.owner-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.owner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0;
}
.owner-title em { color: var(--gold); font-style: italic; }
.owner-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 22px 0 30px;
}
.owner-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  font-weight: 300;
  margin-bottom: 20px;
}
.owner-body p em {
  color: var(--navy);
  font-style: italic;
  font-weight: 400;
}
.owner-body p:last-child { margin-bottom: 0; }
.owner-closing {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  font-style: italic;
  margin-top: 32px !important;
}
@media (max-width: 900px) {
  .owner-sec { padding: 70px 24px; }
  .owner-inner { gap: 36px; }
  .owner-sig-name { font-size: 1rem; }
}
@media (max-width: 600px) {
  .owner-sec { padding: 56px 20px; }
  .owner-left { flex-direction: column; align-items: flex-start; gap: 16px; }
  .owner-img-wrap { width: 100%; border-radius: 6px; aspect-ratio: 16/9; }
  .owner-img-badge { font-size: .62rem; padding: 6px 12px; }
  .owner-body p { font-size: .97rem; line-height: 1.8; }
  .owner-title { font-size: 1.7rem; }
}

/* ============================================================
   OWNER VIDEO FRAME — 3D cinematic player
   ============================================================ */
.owner-frame-scene {
  perspective: 1200px;
  perspective-origin: center center;
  width: 100%;
}
.owner-frame-box {
  transform: rotateX(-2deg) rotateY(6deg);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  width: 100%;
}
.frame-border {
  position: relative;
  border-radius: 10px;
  padding: 16px 16px 12px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, color-mix(in srgb, var(--navy), #000 40%) 50%, var(--navy-dark) 100%);
  box-shadow:
    0 4px  0  0    rgba(201,168,76,.6),
    0 30px 60px -10px rgba(0,0,0,.55),
    0 0   0  1px rgba(201,168,76,.25),
    inset 0 1px 0 rgba(var(--white-rgb),.08);
}
.fc {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .9;
}
.fc.tl { top:  6px; left:  6px; border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.fc.tr { top:  6px; right: 6px; border-width: 2px 2px 0 0; border-radius: 0 3px 0 0; }
.fc.bl { bottom: 20px; left:  6px; border-width: 0 0 2px 2px; border-radius: 0 0 0 3px; }
.fc.br { bottom: 20px; right: 6px; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }
.frame-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: .6rem; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(201,168,76,.5);
}
.frame-badge-icon {
  background: var(--navy); color: var(--gold);
  font-size: .55rem; padding: 2px 5px; border-radius: 3px; letter-spacing: 1px;
}
.frame-screen {
  position: relative; border-radius: 5px; overflow: hidden;
  background: #000; aspect-ratio: 16 / 9;
  box-shadow: inset 0 0 30px rgba(0,0,0,.5), 0 0 0 1px rgba(0,0,0,.4);
}
.frame-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame-play-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(to bottom, rgba(10,20,45,.3) 0%, rgba(10,20,45,.6) 100%);
  cursor: pointer; transition: opacity .4s ease;
}
.frame-play-overlay:hover .frame-play-btn { transform: scale(1.1); }
.frame-play-btn {
  position: relative; width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.fplay-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(201,168,76,.6);
  background: rgba(201,168,76,.15);
  animation: fplay-pulse 2.5s ease-out infinite;
}
@keyframes fplay-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.fplay-icon {
  position: relative; font-size: 1.4rem; color: var(--gold);
  margin-left: 5px; filter: drop-shadow(0 0 8px rgba(201,168,76,.6));
}
.frame-play-label {
  color: rgba(var(--white-rgb),.8); font-size: .7rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
}
.frame-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(var(--white-rgb),.15);
}
.frame-progress-fill {
  height: 100%; background: var(--gold); width: 0%;
  transition: width .25s linear; box-shadow: 0 0 6px rgba(201,168,76,.7);
}
.frame-border::after {
  content: 'BEST WESTERN EXTENDED STAY  ·  VERNAL, UTAH';
  display: block; text-align: center;
  font-size: .52rem; font-weight: 700; letter-spacing: 2.5px;
  color: rgba(var(--gold-rgb), 0.5); margin-top: 10px; text-transform: uppercase;
}
.frame-reflection {
  height: 40px;
  background: linear-gradient(to bottom, rgba(26,46,82,.25) 0%, transparent 100%);
  transform: scaleY(-1) translateZ(-1px);
  filter: blur(4px); opacity: .5;
  border-radius: 0 0 10px 10px; margin: 0 10%;
}
@media (max-width: 900px) {
  .owner-frame-box { transform: rotateX(0deg) rotateY(0deg) !important; }
  .owner-frame-scene { perspective: none; }
  .frame-reflection { display: none; }
}
@media (max-width: 600px) {
  .frame-badge { font-size: .55rem; padding: 4px 10px; }
  .frame-play-btn { width: 54px; height: 54px; }
  .fplay-icon { font-size: 1.1rem; }
  .frame-play-label { font-size: .62rem; letter-spacing: 2px; }
}

/* ============================================================
   WEEKLY RATES SECTION
   ============================================================ */
.weekly-rates { background: var(--navy); padding: 80px 20px; text-align: center; }
.wr-inner { max-width: 900px; margin: 0 auto; }
.wr-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.wr-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: #fff; margin-bottom: 12px; line-height: 1.2;
}
.wr-title em { color: var(--gold); font-style: italic; }
.wr-sub {
  color: rgba(var(--white-rgb),.6); font-size: .97rem;
  font-weight: 300; line-height: 1.7; margin-bottom: 48px;
}
.wr-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.wr-card {
  background: rgba(var(--white-rgb),.06); border: 1px solid rgba(var(--white-rgb),.1);
  border-radius: 12px; padding: 36px 24px; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.wr-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.wr-card.featured {
  background: rgba(201,168,76,.1); border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,.3);
}
.wr-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: .62rem; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.wr-icon { font-size: 2rem; margin-bottom: 12px; }
.wr-type {
  font-size: .78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(var(--white-rgb),.6); margin-bottom: 14px;
}
.wr-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: #fff; line-height: 1; }
.wr-card.featured .wr-price { color: var(--gold); }
.wr-period { font-size: .75rem; color: rgba(var(--white-rgb),.4); letter-spacing: 1px; margin: 8px 0 24px; }
.wr-btn {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: 11px 28px; border-radius: 4px;
  font-weight: 900; font-size: .78rem; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s, transform .2s;
}
.wr-btn:hover { background: var(--gold-light); transform: scale(1.04); }
.wr-note { font-size: .85rem; color: rgba(var(--white-rgb),.45); font-weight: 300; letter-spacing: .5px; }
.wr-note a { color: var(--gold); text-decoration: none; font-weight: 700; }
.wr-note a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .wr-cards { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 32px; }
}

.loc-map { height: 420px; overflow: hidden; position: relative; }
@media (max-width: 900px) { .loc-map { height: 300px; } }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-hero {
  background: var(--navy); padding: 140px 20px 70px;
  text-align: center; position: relative; overflow: hidden;
}
.faq-hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/35a.webp');
  background-size: cover; background-position: center;
  opacity: .60; z-index: 0;
}
.faq-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.faq-hero .tag, .faq-hero h1, .faq-hero p, .faq-hero-divider { position: relative; z-index: 2; }
.faq-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.faq-hero h1 em { color: var(--gold); font-style: italic; }
.faq-hero p {
  color: rgba(var(--white-rgb),.65); font-size: 1rem;
  font-weight: 300; max-width: 520px; margin: 0 auto; line-height: 1.75;
}
.faq-hero-divider { width: 55px; height: 3px; background: var(--gold); border-radius: 2px; margin: 20px auto 0; }
.faq-page-sec { background: var(--white); padding: 80px 20px 100px; }
.faq-categories { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.faq-cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--navy);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center; gap: 10px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid #e8e4dc; border-radius: 10px; overflow: hidden; transition: box-shadow .3s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.faq-q {
  width: 100%; background: var(--soft); border: none;
  padding: 18px 22px; text-align: left;
  font-family: 'Lato', sans-serif; font-size: .97rem;
  font-weight: 700; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; transition: background .2s;
}
.faq-q:hover  { background: #ede9e0; }
.faq-q.open   { background: var(--navy); color: #fff; }
.faq-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  flex-shrink: 0;
}
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: block; max-height: 0; overflow: hidden; opacity: 0;
  padding: 0 22px;
  transition: max-height 0.45s ease-in-out, padding 0.45s ease, opacity 0.35s ease;
  background: var(--white); box-sizing: border-box;
  font-size: .97rem; color: var(--muted); line-height: 1.85; font-weight: 300;
}
.faq-q.open + .faq-a { opacity: 1; max-height: 2000px; }
.faq-a p, .faq-a ul, .faq-a ol { margin: 0 0 1.2em 0; }
.faq-a ul, .faq-a ol { padding-left: 1.8em; margin-left: 0.5em; }
.faq-a li { margin-bottom: 0.6em; }
.faq-a *:last-child { margin-bottom: 0; }
.faq-a a { color: var(--gold); font-weight: 700; text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }
.faq-a strong { color: var(--navy); }
.faq-cta {
  background: var(--navy); border-radius: 16px;
  padding: 48px 40px; text-align: center; margin: 60px auto 0;
}
.faq-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 10px; }
.faq-cta p { color: rgba(var(--white-rgb),.6); font-size: .97rem; font-weight: 300; margin-bottom: 28px; line-height: 1.7; }
.faq-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.faq-cta-btns a {
  padding: 13px 28px; border-radius: 4px; font-weight: 900;
  font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: background .2s, transform .2s;
}
.faq-cta-btns .call { background: var(--gold); color: var(--navy); }
.faq-cta-btns .call:hover { background: var(--gold-light); transform: scale(1.04); }
.faq-cta-btns .email { border: 2px solid rgba(var(--white-rgb),.3); color: #fff; }
.faq-cta-btns .email:hover { border-color: rgba(var(--white-rgb),.7); background: rgba(var(--white-rgb),.06); }
@media (max-width: 600px) { .faq-cta { padding: 36px 20px; } }

/* ============================================================
   EXPLORE PAGE
   ============================================================ */
.ex-hero {
  position: relative; height: 72vh; min-height: 480px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.ex-hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/35a.webp');
  background-size: cover; background-position: center;
  opacity: .60; z-index: 0;
}
.ex-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,24,40,.55) 0%, rgba(10,24,40,.82) 100%);
  z-index: 1;
}
.ex-hero-cnt { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 780px; }
.ex-hero-eyebrow {
  font-family: 'Lato', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.ex-hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.ex-hero-title em { font-style: italic; color: var(--gold); }
.ex-hero-sub {
  font-family: 'Lato', sans-serif; font-size: 1.05rem; font-weight: 300;
  color: rgba(var(--white-rgb),0.82); line-height: 1.7; margin-bottom: 32px;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.ex-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ex-pill-wrap { background: var(--navy); padding-bottom: 28px; }
.ex-pill-nav {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  padding: 32px 24px 0; max-width: 900px; margin: 0 auto;
}
.ex-pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 20px;
  background: rgba(var(--white-rgb),0.07); border: 1px solid rgba(var(--white-rgb),0.18);
  border-radius: 100px; color: rgba(var(--white-rgb),0.8);
  font-family: 'Lato', sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.ex-pill:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.ex-delivery-wrap { background: #fff; }
.ex-sec { padding: 90px 24px; max-width: 1200px; margin: 0 auto; }
.ex-tag {
  font-family: 'Lato', sans-serif; font-size: .72rem; font-weight: 900;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.ex-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.ex-title em { font-style: italic; color: var(--gold); }
.ex-intro {
  font-family: 'Lato', sans-serif; font-size: 1.05rem; color: #5a6070;
  line-height: 1.75; max-width: 620px; margin-bottom: 52px;
}
.delivery-btns { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 52px; }
.del-app-btn {
  display: flex; align-items: center; gap: 14px; padding: 16px 28px;
  border-radius: 14px; text-decoration: none;
  font-family: 'Lato', sans-serif; font-weight: 900; font-size: 1rem;
  letter-spacing: .04em; color: #fff; transition: transform .2s, box-shadow .2s;
}
.del-app-btn:hover { transform: translateY(-3px); }
.del-doordash { background: #ff3008; box-shadow: 0 6px 24px rgba(var(--doordash-rgb), 0.35); }
.del-doordash:hover { box-shadow: 0 12px 32px rgba(var(--doordash-rgb), 0.4); }
.del-ubereats { background: #06C167; box-shadow: 0 6px 24px rgba(var(--ubereats-rgb), 0.35); }
.del-ubereats:hover { box-shadow: 0 12px 32px rgba(var(--ubereats-rgb), 0.4); }
.del-app-icon { font-size: 1.6rem; }
.del-app-sub { font-size: .72rem; font-weight: 400; opacity: .85; letter-spacing: .06em; text-transform: uppercase; }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.del-col-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 6px; }
.del-col-sub { font-family: 'Lato', sans-serif; font-size: .85rem; color: #888; margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase; }
.del-list { display: flex; flex-direction: column; gap: 12px; }
.del-row {
  display: flex; align-items: center; gap: 14px; padding: 10px 16px;
  background: #f8f9fc; border-radius: 10px; border-left: 3px solid var(--gold);
}
.del-icon { font-size: 1.3rem; flex-shrink: 0; }
.del-row strong { display: block; font-family: 'Lato', sans-serif; font-size: .92rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.del-type { display: block; font-family: 'Lato', sans-serif; font-size: .72rem; color: #888; margin-top: 1px; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 28px; }
.card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); transition: transform .28s, box-shadow .28s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.card-img {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark), color-mix(in srgb, var(--navy), #000 60%));
  display: flex; align-items: center; justify-content: center;
}
.card-emoji { font-size: 4.5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.card-badge {
  position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff;
  font-family: 'Lato', sans-serif; font-size: .65rem; font-weight: 900;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.card-dist {
  position: absolute; top: 14px; right: 14px; background: rgba(10,24,40,0.75);
  backdrop-filter: blur(8px); color: rgba(var(--white-rgb),0.9);
  font-family: 'Lato', sans-serif; font-size: .68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
}
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-cat { font-family: 'Lato', sans-serif; font-size: .67rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.card-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.card-desc { font-family: 'Lato', sans-serif; font-size: .9rem; color: #5a6070; line-height: 1.65; flex: 1; margin-bottom: 16px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Lato', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; transition: gap .2s; margin-top: auto;
}
.card-link:hover { gap: 10px; }
.stars-sm,
.stars { color: var(--gold); font-size: .85rem; letter-spacing: .05em; margin-bottom: 8px; }
.feature-strip {
  background: linear-gradient(135deg, var(--navy), color-mix(in srgb, var(--navy), #000 30%));
  padding: 80px 24px; position: relative; overflow: hidden;
}
.feature-strip::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8860a' fill-opacity='0.06'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5c0-.28.22-.5.5-.5s.5.22.5.5V28h20v-5h-5v-5h5v-5H20v2.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5zm-2 5.5h-1v1h1v-1zm2-1h-1v1h1v-1z'/%3E%3C/g%3E%3C/svg%3E");
}
.feature-inner {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative;
}
.feature-left .ex-tag { color: var(--gold); }
.feature-title { color: #fff !important; }
.feature-desc { font-family: 'Lato', sans-serif; font-size: 1rem; color: rgba(var(--white-rgb),0.78); line-height: 1.8; margin-bottom: 28px; }
.feature-highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.fh { display: flex; align-items: center; gap: 12px; font-family: 'Lato', sans-serif; font-size: .92rem; color: rgba(var(--white-rgb),0.85); }
.fh-icon {
  width: 36px; height: 36px; background: rgba(200,134,10,0.2); border: 1px solid rgba(200,134,10,0.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.feature-right { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fcard {
  background: rgba(var(--white-rgb),0.06); border: 1px solid rgba(var(--white-rgb),0.1);
  border-radius: 14px; padding: 22px 18px; text-align: center; transition: background .2s, transform .2s;
}
.fcard:hover { background: rgba(200,134,10,0.15); transform: translateY(-3px); }
.fcard-icon { font-size: 2rem; margin-bottom: 10px; }
.fcard-label { font-family: 'Playfair Display', serif; font-size: .95rem; color: #fff; font-weight: 700; }
.fcard-sub { font-family: 'Lato', sans-serif; font-size: .72rem; color: rgba(var(--white-rgb),0.55); margin-top: 4px; letter-spacing: .06em; text-transform: uppercase; }
.resto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.rcard {
  background: #fff; border-radius: 14px; padding: 24px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.07); border-left: 4px solid var(--gold);
  transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; gap: 8px;
}
.rcard:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.rcard-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.rcard-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
.rcard-cuisine { font-family: 'Lato', sans-serif; font-size: .67rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.rcard-desc { font-family: 'Lato', sans-serif; font-size: .88rem; color: #5a6070; line-height: 1.65; }
.rcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.rcard-price { font-family: 'Lato', sans-serif; font-size: .78rem; font-weight: 700; }

/* ============================================================
   YOUTUBE FULL-SCREEN HERO SECTION
   ============================================================ */
#yt-hero {
  position: relative; width: 100%; min-height: 100vh;
  background: #050505; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
}
#yt-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px; opacity: 0.35; pointer-events: none; z-index: 1;
}
.yt-hero-header { position: relative; z-index: 2; text-align: center; padding: 60px 20px 40px; }
.yt-hero-eyebrow {
  font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.yt-hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin: 0 0 16px;
}
.yt-hero-title em { font-style: italic; color: var(--gold); }
.yt-hero-sub {
  font-family: 'Lato', sans-serif; font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300; color: rgba(var(--white-rgb),0.65);
  max-width: 540px; margin: 0 auto; line-height: 1.7;
}
.yt-video-wrap {
  position: relative; z-index: 2;
  width: min(92vw, 1100px); aspect-ratio: 16 / 9;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(200,134,10,0.18), 0 30px 80px rgba(0,0,0,0.75), 0 0 120px rgba(200,134,10,0.07);
}
.yt-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
.yt-accent-line {
  width: min(92vw, 1100px); height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 0; position: relative; z-index: 2;
}
.yt-hero-footer { position: relative; z-index: 2; text-align: center; padding: 36px 20px 60px; }
.yt-hero-footer p {
  font-family: 'Lato', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(var(--white-rgb),0.35); margin: 0 0 24px;
}
.yt-book-btn {
  display: inline-block; font-family: 'Lato', sans-serif;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #050505; background: var(--gold);
  padding: 14px 36px; border-radius: 2px; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.yt-book-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.section-divider { width: 100%; background: #050505; display: flex; align-items: center; justify-content: center; padding: 0; position: relative; overflow: hidden; }
.section-divider-inner { width: min(92vw, 1100px); display: flex; align-items: center; gap: 20px; padding: 32px 0 0; }
.section-divider-line { flex: 1; height: 1px; background: rgba(var(--white-rgb),0.1); }
.section-divider-text {
  font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(var(--white-rgb),0.25); white-space: nowrap;
}
.ob-fullvideo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(var(--white-rgb),0.7); text-decoration: none;
  border: 1px solid rgba(var(--white-rgb),0.2); padding: 11px 24px;
  border-radius: 2px; transition: color 0.2s, border-color 0.2s;
}
.ob-fullvideo:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   PET FRIENDLY BADGE
   ============================================================ */
.pet-badge {
  position: absolute; bottom: 80px; right: 28px;
  display: flex; flex-direction: column; align-items: center;
  width: 175px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--cream), #fff 90%), color-mix(in srgb, var(--cream), #fff 80%));
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 0 3px var(--gold), 0 0 0 6px rgba(var(--gold-rgb), 0.25);
  cursor: pointer; text-decoration: none;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
  z-index: 20;
  animation: petSlideIn 1s cubic-bezier(.34,1.56,.64,1) 1.8s both;
}
.pet-badge:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 3px color-mix(in srgb, var(--gold), #fff 20%), 0 0 0 7px rgba(var(--gold-rgb), 0.3);
}
.pet-badge-img { width: 100%; height: 130px; overflow: hidden; position: relative; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.pet-badge-img img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; display: block; padding: 6px 4px 0; }
.pet-badge-footer { width: 100%; padding: 10px 12px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 7px; }
.pet-paw-icon { font-size: 1.2rem; line-height: 1; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.pet-badge-words { display: flex; flex-direction: column; align-items: flex-start; }
.pet-label { font-family: 'Lato', sans-serif; font-size: .82rem; font-weight: 900; color: #fff; letter-spacing: .1em; text-transform: uppercase; line-height: 1.15; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.pet-sub { font-family: 'Lato', sans-serif; font-size: .62rem; font-weight: 400; color: rgba(var(--white-rgb),0.85); letter-spacing: .08em; text-transform: uppercase; }
@keyframes petSlideIn {
  from { opacity: 0; transform: translateX(60px) scale(0.85); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@media (max-width: 600px) {
  .pet-badge { width: 130px; bottom: 75px; right: 14px; border-radius: 14px; }
  .pet-badge-img { height: 100px; }
  .pet-label { font-size: .7rem; }
  .pet-sub { font-size: .55rem; }
}

/* ============================================================
   EXECUTIVE INN TRANSITION BADGE
   Remove this entire block once Best Western branding is official
   ============================================================ */
#ei-badge {
  position: fixed; left: 0; top: 20%;
  transform: translateY(-50%) translateX(-110%);
  transition: transform 0.75s cubic-bezier(0.22,1,0.36,1);
  z-index: 99999; width: 520px;
  background: #1a2e4a; color: #fff;
  border-radius: 0 24px 24px 0;
  border-right: 7px solid #c9a84c;
  border-top: 7px solid #c9a84c;
  border-bottom: 7px solid #c9a84c;
  font-family: 'Lato', sans-serif; line-height: 1.6;
  padding: 44px 38px 40px 32px; cursor: default;
  box-shadow: 6px 6px 28px rgba(0,0,0,0.55);
}
#ei-badge.ei-visible { animation: eiPulse 2s ease-in-out infinite; }
@keyframes eiPulse {
  0%, 100% { box-shadow: 6px 6px 28px rgba(0,0,0,0.55), 0 0 0px 0px rgba(201,168,76,0); }
  50%       { box-shadow: 8px 8px 36px rgba(0,0,0,0.65), 0 0 28px 10px rgba(201,168,76,0.65); }
}
#ei-badge .ei-dot {
  display: inline-block; width: 20px; height: 20px; border-radius: 50%;
  background: #4caf50; margin-right: 12px; vertical-align: middle; flex-shrink: 0;
  animation: eiDotBlink 0.9s ease-in-out infinite;
}
@keyframes eiDotBlink {
  0%, 100% { opacity: 1;    box-shadow: 0 0 10px 4px rgba(76,175,80,0.8); }
  50%       { opacity: 0.1; box-shadow: 0 0 0px  0px rgba(76,175,80,0);   }
}
#ei-badge .ei-header { display: flex; align-items: center; font-weight: 900; font-size: 2rem; color: #f5c842; margin-bottom: 20px; letter-spacing: 0.02em; }
#ei-badge .ei-body { font-size: 1.3rem; color: #dde4ef; line-height: 1.8; }
#ei-badge .ei-body strong { color: #fff; font-weight: 700; }
#ei-badge .ei-body em { color: #f5c842; font-style: normal; font-weight: 700; }
#ei-badge-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: rgba(255,255,255,0.45);
  font-size: 1.3rem; cursor: pointer; line-height: 1; padding: 4px 7px; transition: color 0.2s;
}
#ei-badge-close:hover { color: #fff; }
@media (min-width: 641px) and (max-width: 900px) {
  #ei-badge { width: 320px; padding: 28px 24px 24px 22px; }
  #ei-badge .ei-header { font-size: 1.3rem; margin-bottom: 12px; }
  #ei-badge .ei-body { font-size: 0.95rem; }
  #ei-badge .ei-dot { width: 14px; height: 14px; margin-right: 10px; }
}
@media (max-width: 640px) {
  #ei-badge { top: 60px; left: 0; right: 0; width: auto; transform: translateY(-200%); border-radius: 0 0 16px 16px; border-right: none; border-top: none; border-left: none; border-bottom: 7px solid #c9a84c; padding: 20px 18px 18px 20px; box-shadow: 0 8px 28px rgba(0,0,0,0.55); }
  #ei-badge .ei-header { font-size: 1.1rem; margin-bottom: 10px; }
  #ei-badge .ei-body { font-size: 0.85rem; line-height: 1.6; }
  #ei-badge .ei-dot { width: 11px; height: 11px; margin-right: 8px; }
  #ei-badge-close { font-size: 1rem; top: 8px; right: 10px; }
}
/* ── END EXECUTIVE INN TRANSITION BADGE ── */

/* ============================================================
   RATES TABLE  (index.html)
   ============================================================ */
.rates-table-wrap { max-width: 860px; margin: 32px auto 0; overflow-x: auto; }
.rates-table { width: 100%; border-collapse: collapse; font-family: 'Lato', sans-serif; font-size: 0.95rem; }
.rates-table thead th { background: #1a2e4a; color: #fff; padding: 12px 14px; text-align: left; font-weight: 700; letter-spacing: 0.03em; }
.rates-table tbody tr:nth-child(even) { background: #f5f4f0; }
.rates-table tbody tr:nth-child(odd)  { background: #fff; }
.rates-table tbody td { padding: 11px 14px; border-bottom: 1px solid #e8e6df; color: #333; vertical-align: middle; }
.rates-table .rate-price { font-weight: 700; color: #1a2e4a; font-size: 1.05rem; }
.rates-table .rate-note { font-size: 0.83rem; color: #777; margin-top: 3px; }
.rates-monthly-note { text-align: center; margin: 18px auto 0; font-size: 0.9rem; color: #555; max-width: 640px; }
.rates-monthly-note a { color: #1a2e4a; font-weight: 700; }
@media (max-width: 600px) {
  .rates-table thead th:nth-child(3),
  .rates-table tbody td:nth-child(3) { display: none; }
}

/* ============================================================
   SEO LANDING PAGES — Shared & Page-Specific Styles
   Used by: dinosaur-national-monument, extended-stay,
            hotel-prices, pet-friendly, workforce-crew-housing,
            flaming-gorge
   ============================================================ */

/* ── Page Hero (shared across all SEO pages) ── */
.page-hero {
  background: linear-gradient(to bottom, rgba(10,20,45,.55), rgba(10,20,45,.82)),
              url('images/35a.webp') center/cover no-repeat;
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 70px;
}
.page-hero-cnt { color: #fff; max-width: 740px; }

/* ── Distance bar (dinosaur, flaming-gorge) ── */
.distance-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: .85rem 2rem;
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .04em;
}

/* ── Content layout ── */
.content-wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.intro-pull {
  background: var(--soft);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 2rem;
  margin: 3rem 0 2rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #444;
  font-weight: 300;
}
.intro-pull strong { color: var(--navy); font-weight: 700; }

.content-section { padding: 2.2rem 0; border-bottom: 1px solid #e8e4dc; }
.content-section:last-of-type { border-bottom: none; }
.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: .9rem;
  line-height: 1.25;
}
.content-section p { color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: .9rem; }
.content-section p:last-child { margin-bottom: 0; }

/* ── Feature list (all SEO pages) ── */
.feat-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .55rem; margin: 1rem 0; }
.feat-list li { display: flex; align-items: flex-start; gap: .6rem; color: var(--muted); font-size: .95rem; font-weight: 300; }
.feat-list li::before { content: '→'; color: var(--gold); font-weight: 900; flex-shrink: 0; }

/* ── Pro tip / Savings tip callout (dinosaur, hotel-prices, flaming-gorge) ── */
.pro-tip,
.savings-tip {
  background: var(--soft);
  border-left: 4px solid var(--navy);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
}
.pro-tip p, .savings-tip p { margin: 0; font-size: .97rem; color: var(--muted); }
.pro-tip strong, .savings-tip strong { color: var(--navy); }
.savings-tip { border-left-color: var(--gold); }

/* ── Attraction cards (dinosaur, flaming-gorge) ── */
.attraction-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.attr-card { background: var(--soft); border-radius: 10px; padding: 1.2rem; border-top: 3px solid var(--navy); }
.attr-card strong { display: block; font-family: 'Playfair Display', serif; font-size: .97rem; color: var(--navy); margin-bottom: .3rem; }
.attr-card p { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ── Rate cards (hotel-prices) ── */
.rate-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.rate-card {
  background: var(--soft); border-radius: 10px; padding: 1.6rem 1.2rem;
  text-align: center; position: relative; border-top: 3px solid #ddd;
  transition: transform .25s, box-shadow .25s;
}
.rate-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.09); }
.rate-card.featured { background: var(--navy); border-top-color: var(--gold); }
.rate-card.featured .rate-label { color: #fff; }
.rate-card.featured .rate-desc { color: rgba(255,255,255,.65); }
.rate-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: .62rem; font-weight: 900; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.rate-icon { font-size: 1.8rem; margin-bottom: .6rem; }
.rate-label { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: .4rem; }
.rate-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ── Included box (hotel-prices) ── */
.included-box { background: var(--soft); border-radius: 10px; padding: 1.5rem 2rem; margin: 1.5rem 0; }
.included-box h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 1rem; }
.included-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: .5rem; }
.inc-item { display: flex; align-items: center; gap: .5rem; font-size: .92rem; color: var(--muted); }
.inc-item::before { content: '✓'; color: var(--navy); font-weight: 900; flex-shrink: 0; }

/* ── Tips grid (pet-friendly) ── */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(188px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.tip-card { background: var(--soft); border-radius: 10px; padding: 1.2rem; border-top: 3px solid var(--gold); }
.tip-card .tip-icon { font-size: 1.5rem; display: block; margin-bottom: .5rem; }
.tip-card p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── Highlight cards (workforce-crew-housing) ── */
.highlight-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.hcard {
  background: var(--soft); border-radius: 10px; padding: 1.4rem 1.2rem;
  text-align: center; border-top: 3px solid var(--gold);
  transition: transform .25s, box-shadow .25s;
}
.hcard:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.09); }
.hcard .hc-icon { font-size: 1.9rem; margin-bottom: .6rem; }
.hcard strong { display: block; font-family: 'Playfair Display', serif; font-size: .97rem; color: var(--navy); margin-bottom: .3rem; }
.hcard span { font-size: .82rem; color: var(--muted); line-height: 1.4; }

/* ── Season grid (flaming-gorge) ── */
.season-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.season-card { background: var(--soft); border-radius: 10px; padding: 1.2rem; border-top: 3px solid var(--gold); }
.season-card .season-icon { font-size: 1.5rem; display: block; margin-bottom: .4rem; }
.season-card strong { display: block; font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--navy); margin-bottom: .3rem; }
.season-card p { font-size: .84rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── CTA contact block (all SEO pages) ── */
.cta-contact {
  background: var(--navy);
  padding: 3.5rem 2rem;
  text-align: center;
  margin: 3rem 0 0;
}
.cta-contact h2 { font-family: 'Playfair Display', serif; color: #fff; margin-bottom: .5rem; font-size: 1.9rem; }
.cta-contact p { color: rgba(255,255,255,.65); font-weight: 300; margin-bottom: 2rem; }
.contact-options { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-opt {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 8px; padding: 1rem 1.5rem;
  text-align: center; text-decoration: none;
  color: white; min-width: 155px;
  transition: background .2s, border-color .2s;
}
.contact-opt:hover { background: rgba(201,168,76,.15); border-color: var(--gold); }
.contact-opt .icon { font-size: 1.4rem; display: block; margin-bottom: .3rem; }
.contact-opt .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; opacity: .65; display: block; }
.contact-opt .val { font-weight: 700; font-size: .95rem; }
.contact-opt.book { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.contact-opt.book:hover { background: var(--gold-light); }
.contact-opt.book .val { color: var(--navy); }

/* ── SEO pages responsive (≤ 700px) ── */
@media (max-width: 700px) {
  .page-hero { min-height: 46vh; padding: 100px 20px 50px; }
  .feat-list,
  .attraction-cards,
  .tips-grid,
  .highlight-cards,
  .season-grid,
  .included-grid     { grid-template-columns: 1fr; }
  .rate-cards        { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}