/* ============================================================
   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);
}

/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
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(10, 20, 45, .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(255, 255, 255, .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-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); }

/* ============================================================
   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(255,255,255,.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(255, 255, 255, .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(255, 255, 255, .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(255, 255, 255, .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(255, 255, 255, .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;
}

/* The pulsing ring circle */
.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(255,255,255,.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)
   ============================================================ */

/* Page override */
body.video-page { background: #000; }

/* ── Top nav bar ── */
.vid-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 60px;
  background: rgba(5, 10, 25, 0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,.18);
}
.vtb-logo {
  font-family: 'Playfair Display', serif; color: #fff;
  font-size: .95rem; font-weight: 700; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.vtb-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
  transition: transform .3s ease;
}
.vtb-logo:hover .vtb-logo-img { transform: scale(1.08); }
.vtb-badge {
  background: var(--gold); color: var(--navy); font-size: .55rem;
  font-weight: 900; letter-spacing: 2px; padding: 3px 7px;
  border-radius: 3px; text-transform: uppercase;
}
.vtb-back {
  font-size: .72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color .3s;
  display: flex; align-items: center; gap: 6px;
}
.vtb-back:hover { color: var(--gold); }

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

/* ── Scenes ── */
.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); }

/* Ken Burns directions */
.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 overlays */
.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 texture */
#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");
}

/* ── Caption block ── */
.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(255,255,255,.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(255,255,255,.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 counter ── */
.scene-num {
  position: absolute; top: 80px; right: 40px; z-index: 10;
  color: rgba(255,255,255,.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; }

/* ── Thumbnail strip ── */
.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(255,255,255,.6); }
.thumb img    { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Player controls ── */
#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(255,255,255,.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(255,255,255,.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(255,255,255,.12); color: var(--gold); }
#play-pause { font-size: 1.3rem; }
.ctrl-time {
  font-size: .75rem; color: rgba(255,255,255,.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(255,255,255,.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(255,255,255,.6); }
.vol-track {
  width: 60px; height: 3px; background: rgba(255,255,255,.2);
  border-radius: 2px; cursor: pointer; position: relative;
}
.vol-fill { height: 100%; width: 75%; background: rgba(255,255,255,.6); border-radius: 2px; }

/* ── Intro screen ── */
#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(255,255,255,.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(255,255,255,.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 screen ── */
#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(255,255,255,.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(255,255,255,.3); color: #fff; background: transparent; }
.outro-btns .ob-replay:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.outro-divider { width: 50px; height: 2px; background: var(--gold); margin: 0 auto 24px; border-radius: 2px; }
.outro-address {
  margin-top: 28px; color: rgba(255,255,255,.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 ── */
#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(255,255,255,.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(255,255,255,.4);
  text-transform: uppercase; margin-top: 12px;
}
.loader-logo {
  font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.6rem; letter-spacing: 2px;
}

/* ── Video page responsive ── */
@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 upgrade)
   Replaces old img-based hero slides with cinematic scene-bg
   ============================================================ */

/* The Ken Burns background div — starts zoomed, pulls back smoothly.
   JS drives the transform inline to avoid specificity conflicts. */
.hero-kb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

/* Directional Ken Burns per slide — cycles through for variety */
.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;
}

/* Signature block */
.owner-sig {
  padding-left: 4px;
  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;
}

/* ── Right column ── */
.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;
}

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .owner-sec { padding: 70px 24px; }
  .owner-inner { gap: 36px; }
  .owner-sig-name { font-size: 1rem; }
}

/* ── Mobile (≤ 600px) ── */
@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
   ============================================================ */

/* Scene container sets the perspective */
.owner-frame-scene {
  perspective: 1200px;
  perspective-origin: center center;
  width: 100%;
}

/* The box that tilts in 3D */
.owner-frame-box {
  transform: rotateX(2deg) rotateY(-4deg);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  width: 100%;
}

/* ── Outer decorative frame ── */
.frame-border {
  position: relative;
  border-radius: 10px;
  padding: 16px 16px 12px;
  background: linear-gradient(
    160deg,
    var(--navy-dark) 0%,
    #1e3460 50%,
    var(--navy-dark) 100%
  );
  box-shadow:
    0 4px  0  0    rgba(201,168,76,.6),        /* gold bottom ledge */
    0 30px 60px -10px rgba(0,0,0,.55),          /* deep shadow */
    0 0   0  1px rgba(201,168,76,.25),          /* outer gold outline */
    inset 0 1px 0 rgba(255,255,255,.08);        /* top highlight */
}

/* Corner accent marks */
.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; }

/* BW badge centered at top of frame */
.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;
}

/* ── The screen / video area ── */
.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;
}

/* ── Play overlay ── */
.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(255,255,255,.8);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── Progress bar inside frame ── */
.frame-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.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 bottom label strip ── */
.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(201,168,76,.5);
  margin-top: 10px;
  text-transform: uppercase;
}

/* ── Reflection beneath the frame ── */
.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%;
}

/* ── Responsive: tablet ── */
@media (max-width: 900px) {
  .owner-frame-box {
    transform: rotateX(0deg) rotateY(0deg) !important;
  }
  .owner-frame-scene {
    perspective: none;
  }
  .frame-reflection { display: none; }
}

/* ── Responsive: mobile ── */
@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; }
}