/* ============================================================
   Riverview Motel — Modern Glass UI (Bootstrap 5)
   Black & orange glassmorphism theme
   ============================================================ */

:root {
  /* Black & orange palette */
  --black:       linear-gradient(150deg, #0a0b0e 0%, #0d1016 55%, #0a0c11 100%);
  --black-2:     #08090c;
  --charcoal:    rgba(255, 255, 255, .055);   /* frosted panel fill */
  --graphite:    rgba(255, 255, 255, .028);
  --smoke:       rgba(255, 255, 255, .075);
  --panel:       linear-gradient(160deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.015) 55%, rgba(255,255,255,.03) 100%);
  --paper:       linear-gradient(155deg, #0d0f15 0%, #11141c 55%, #0b0d12 100%);

  --orange:      #ff7a00;
  --orange-hi:   #ffa64d;
  --orange-deep: #ff6600;
  --amber:       #ffd08a;

  --ink:         #eceef4;    /* light text on dark glass */
  --muted:       #9aa1ad;
  --white:       #ffffff;

  --grad-orange: linear-gradient(135deg, #ffab4d 0%, #ff7a1a 55%, #f74c00 100%);

  --glass-bg:    rgba(17, 19, 26, .40);
  --glass-brd:   rgba(255, 255, 255, .13);
  --glass-hi:    rgba(255, 255, 255, .08);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, .42);
  --shadow-sm:   0 12px 30px rgba(0, 0, 0, .34);
  --radius:      18px;
  --nav-h:       76px;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ---------- Animated aurora backdrop (drifts behind glass) ---------- */
.aurora {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.aurora i { position: absolute; border-radius: 50%; will-change: transform, opacity; }
.aurora .a1 {
  left: -12%; top: -10%; width: 62vw; height: 62vw;
  background: radial-gradient(circle, rgba(255,138,40,.38) 0%, rgba(255,106,0,.16) 45%, transparent 70%);
  animation: aurora1 26s ease-in-out infinite;
}
.aurora .a2 {
  right: -14%; top: 34%; width: 54vw; height: 54vw;
  background: radial-gradient(circle, rgba(255,168,84,.30) 0%, rgba(255,120,20,.13) 45%, transparent 70%);
  animation: aurora2 32s ease-in-out infinite;
}
.aurora .a3 {
  left: 22%; bottom: -18%; width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(255,158,60,.26) 0%, rgba(255,90,10,.12) 50%, transparent 72%);
  animation: aurora3 38s ease-in-out infinite;
}
@keyframes aurora1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .9; }
  33%      { transform: translate(9vw, 6vh) scale(1.18); opacity: 1; }
  70%      { transform: translate(-5vw, 10vh) scale(.86); opacity: .65; }
}
@keyframes aurora2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .85; }
  40%      { transform: translate(-10vw, -5vh) scale(1.22); opacity: 1; }
  75%      { transform: translate(-3vw, 8vh) scale(.9); opacity: .6; }
}
@keyframes aurora3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .8; }
  30%      { transform: translate(7vw, -6vh) scale(1.25); opacity: 1; }
  70%      { transform: translate(-8vw, -10vh) scale(.85); opacity: .55; }
}
@media (prefers-reduced-motion: reduce) {
  .aurora i { animation: none; opacity: .5; }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1100px at 10% -8%,  rgba(255,106,0,.10), transparent 60%),
    radial-gradient(900px  at 96% 34%,  rgba(255,140,40,.07), transparent 55%),
    radial-gradient(1300px at 55% 118%, rgba(255,106,0,.08), transparent 60%),
    linear-gradient(180deg, #0a0b0e 0%, #0d1016 50%, #0a0b0e 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--orange); color: #fff; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--orange); }
a:hover { color: var(--orange-hi); }

/* Align targets below the sticky navbar */
[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #0a0c10; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #33363f, #1d2027); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

.container { max-width: 1280px; }
.section { padding-block: 84px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); font-weight: 700;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 26px; height: 2px; background: var(--orange);
  border-radius: 2px;
}
.eyebrow--gold { color: var(--orange); }
.eyebrow--gold::before, .eyebrow--gold::after { background: var(--orange); }

h1, h2, h3, h4, h5 { font-family: var(--font-head); letter-spacing: -.01em; }
.center { text-align: center; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #fff; text-shadow: 0 4px 18px rgba(0,0,0,.35); }
.section-title.center { text-align: center; }
.section-sub { max-width: 720px; color: #a9b0bd; margin: 18px auto 0; text-align: center; }
.lead { font-size: 18px; color: #e6e9f0; }

/* ============================================================
   BUTTONS  (Bootstrap .btn overridden)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .02em; line-height: 1.2;
  cursor: pointer; border: 0; transition: .25s ease; white-space: nowrap;
}
.btn-lg { padding: 16px 34px; font-size: 16.5px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.btn-orange { background: var(--grad-orange); color: #fff; box-shadow: 0 10px 26px rgba(255,90,0,.38); }
.btn-orange:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,90,0,.5); }

/* Glass button */
.btn-dark {
  background: var(--glass-bg); color: #fff;
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 var(--glass-hi), var(--shadow-sm);
}
.btn-dark:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,90,0,.45); }

.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.85); }
.btn-ghost:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }

.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: rgba(9, 10, 13, .62);
  backdrop-filter: blur(10px);
  color: #cbd1dc; font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-brd);
}
.topbar a { color: #cbd1dc; }
.topbar a:hover { color: var(--orange-hi); }
.topbar .tb-left, .topbar .tb-right { display: flex; align-items: center; gap: 22px; white-space: nowrap; overflow: hidden; }
.topbar svg { width: 14px; height: 14px; fill: var(--orange); flex: none; margin-right: 5px; vertical-align: middle; }
@media (max-width: 768px) { .topbar .tb-right, .topbar .tb-left span:first-child { display: none; } }

/* ============================================================
   NAVBAR — frosted glass
   ============================================================ */
.navbar-rvm {
  background: rgba(9, 10, 13, .60);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  min-height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 6px 26px rgba(0,0,0,.35);
}
.navbar-rvm::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--amber), var(--orange), transparent);
}
.navbar-rvm .navbar-brand { display: inline-flex; align-items: center; padding: 6px 0; margin-right: 0; }
.navbar-rvm .navbar-brand .navbar-brand-name {
  font-family: var(--font-head); font-size: 23px; font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: .02em; white-space: nowrap;
  text-shadow: 0 3px 12px rgba(0,0,0,.45);
}
.navbar-rvm .navbar-brand .navbar-brand-name em {
  font-style: normal;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@media (max-width: 575.98px) {
  .navbar-rvm .navbar-brand .navbar-brand-name { font-size: 19px; }
}
.navbar-rvm .navbar-nav { gap: 2px; }
.navbar-rvm .nav-link {
  color: #dfe3eb; font-weight: 600; font-size: 14.5px;
  padding: 9px 14px; border-radius: 40px; transition: .2s;
}
.navbar-rvm .nav-link:hover { color: var(--orange-hi); background: rgba(255,106,0,.12); }
.navbar-rvm .nav-link.active { color: var(--orange); position: relative; }
.navbar-rvm .nav-link.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.navbar-toggler { border: 1px solid rgba(255,255,255,.35); border-radius: 10px; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255,106,0,.4); }
/* Orange 3-line hamburger — visible on the dark glass navbar */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff7a00' stroke-linecap='round' stroke-width='2.6' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991.98px) {
  .navbar-rvm .navbar-collapse { background: rgba(12,13,18,.82); backdrop-filter: blur(14px); border-radius: 0 0 16px 16px; padding: 8px 6px 16px; margin-top: 8px; }
  .navbar-rvm .navbar-nav { gap: 0; }
  .navbar-rvm .nav-link { padding: 12px 14px; }
  .navbar-rvm .nav-link.active::after { display: none; }
}

/* Restaurants link is hidden by default (desktop horizontal navbar) */
.mobile-only { display: none; }

/* Restaurants link shows only in the mobile/collapsed menu (rule last so it wins) */
@media (max-width: 991.98px) {
  .mobile-only { display: list-item; }
}

/* ============================================================
   HERO — image + dark glass overlay + orange glow
   ============================================================ */
.hero { position: relative; min-height: 660px; display: flex; align-items: center; overflow: hidden; background: var(--black); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
/* Slide visibility is driven by JS (sets inline opacity + z-index) which
   overrides everything and works reliably in every browser. */
.hero-bg img:first-child { opacity: 1; }
@keyframes heroFade { 0%{opacity:1} 20%{opacity:1} 25%{opacity:0} 100%{opacity:0} }
/* Radio-driven override is intentionally NOT applied for the autoplay slides,
   so the CSS animation is the single source of truth for which slide shows. */
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 28%, rgba(255,106,0,.26), transparent 55%),
    radial-gradient(ellipse at 88% 78%, rgba(255,140,40,.12), transparent 45%),
    linear-gradient(180deg, rgba(10,11,14,.66) 0%, rgba(10,11,14,.38) 45%, rgba(10,11,14,.94) 100%);
}
.hero-inner { position: relative; z-index: 2; }

/* Radios drive the slider — keep them invisible but still functional */
.hero-radio {
  position: absolute; width: 1px; height: 1px; opacity: 0;
  margin: 0; padding: 0; border: 0; overflow: hidden;
}

/* Your original logo — contains the original fish emblem — plain & centered.
   Shown ONLY on the homepage (.page-home); hidden on all other pages. */
.hero-brand {
  display: none;
}
.page-home .hero-brand {
  display: flex; align-items: center; justify-content: center;
  width: fit-content; margin: 0 auto 24px;
}
.hero-brand img.hero-brand-img { height: 320px; width: auto; display: block; }
@media (max-width: 575.98px) {
  .hero-brand img.hero-brand-img { height: 200px; }
}

/* Center head logo is hidden on all non-home pages by default */
.page-sub .hero-brand {
  display: none;
}
.hero .eyebrow { color: var(--amber); }
.hero .eyebrow::before, .hero .eyebrow::after { background: var(--orange); }
.hero h1 {
  font-size: clamp(34px, 6vw, 60px); color: #fff; margin: 20px 0 16px; line-height: 1.06;
  font-weight: 800; text-shadow: 0 6px 30px rgba(0,0,0,.5);
}
.hero h1 em { font-style: normal; color: var(--orange-hi); background: linear-gradient(90deg, var(--amber), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 17.5px; color: #e9ecf3; max-width: 640px; margin: 0 0 32px; }
.hero .hero-meta { display: flex; gap: 12px; align-items: center; margin-top: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.hero .hero-meta .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,12,16,.5); border: 1px solid var(--glass-brd);
  color: #fff; font-size: 13.5px; padding: 8px 15px; border-radius: 999px;
  backdrop-filter: blur(10px); box-shadow: inset 0 1px 0 var(--glass-hi);
}
.hero .hero-meta .chip svg { width: 15px; height: 15px; fill: var(--orange); }

.hero-nav {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
}
.hero-nav-btn {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  background: rgba(11,12,16,.55); border: 1px solid var(--glass-brd); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer; pointer-events: auto;
  backdrop-filter: blur(8px); transition: .2s;
  display: grid; place-items: center;
}
.hero-nav-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,90,0,.35); }
.hero-nav-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.hero-prev { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); }
.hero-next { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); }

/* Inner-page hero — glass */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(ellipse at 82% 16%, rgba(255,106,0,.22), transparent 45%),
    radial-gradient(ellipse at 14% 92%, rgba(255,150,60,.14), transparent 42%),
    linear-gradient(140deg, #0a0c10 0%, #0f1218 60%, #0b0d12 100%);
  padding: 92px 0 76px;
  border-bottom: 2px solid var(--orange);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  backdrop-filter: blur(3px); background: rgba(255, 255, 255, .012);
}
/* keep page content (logo, titles) above the glass overlay */
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--amber); }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--orange); }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 50px); margin: 16px 0 12px; font-weight: 800; }
.page-hero p { color: #d9dce5; max-width: 640px; font-size: 16.5px; }
.crumbs { font-size: 13px; margin-top: 18px; color: #aeb4c0; }
.crumbs a { color: var(--amber); }
.crumbs span { margin: 0 7px; }

/* ============================================================
   SPLIT / FEATURE
   ============================================================ */
.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: 46px; align-items: center; }
.split .media { grid-column: span 6; }
.split .media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); border: 1px solid var(--glass-brd); }
.split .content { grid-column: span 6; }
.split .content h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); margin: 16px 0 14px; text-shadow: 0 4px 18px rgba(0,0,0,.3); }
.split .content p { color: #c6ccd9; }
.split .content ul.ticks { list-style: none; padding: 0; margin: 20px 0; }
.split .content ul.ticks li { position: relative; padding-left: 30px; margin-bottom: 10px; color: #e4e7ee; }
.split .content ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px;
  background: var(--orange) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  border-radius: 50%;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split .media { order: -1; }
}

/* ============================================================
   GLASS CARD  (Bootstrap .card overridden)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }
/* 3-up layout for the Guest Suites room types */
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 28px; }
/* Video grid — bigger boxes, 3 across on desktop, responsive below */
.video-grid { gap: 30px; }
@media (min-width: 992px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: 34px; }
}
@media (min-width: 721px) and (max-width: 991.98px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
.card {
  background: var(--glass-bg); color: var(--ink);
  border: 1px solid var(--glass-brd); border-radius: var(--radius);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 var(--glass-hi), var(--shadow-sm);
  padding: 30px 26px; transition: .32s; min-width: 0;
}
.card:hover { transform: translateY(-6px); background: rgba(23,26,36,.6); border-color: rgba(255,106,0,.55); box-shadow: inset 0 1px 0 var(--glass-hi), 0 22px 52px rgba(0,0,0,.5), 0 6px 24px rgba(255,90,0,.18); }
.card .icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-orange); box-shadow: 0 10px 22px rgba(255,90,0,.35); margin-bottom: 20px;
}
.card .icon svg { width: 28px; height: 28px; fill: #fff; }
.card h3 { font-size: 19.5px; color: #fff; margin: 0 0 10px; }
.card p { font-size: 14.5px; color: var(--muted); margin: 0; }

.card--photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--glass-brd); display: flex; flex-direction: column; }
.card--photo img { aspect-ratio: 16/10; object-fit: cover; transition: transform .5s; }
.card--photo:hover img { transform: scale(1.06); }
.card--photo .cbody { position: static; flex: 1 0 auto; display: flex; flex-direction: column; background: rgba(17,19,26,.50); backdrop-filter: blur(16px); padding: 18px 20px; }
.card--photo h3 { color: #fff; font-size: 18px; margin: 0 0 8px; }
.card--photo p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }
.card--photo .chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 4px; }
.chip { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: var(--smoke); color: #dfe3eb; border: 1px solid rgba(255,255,255,.14); }
.chip--gold { background: rgba(255,106,0,.16); color: var(--orange-hi); border: 1px solid rgba(255,106,0,.35); }

/* ============================================================
   BAND (dark glass CTA)
   ============================================================ */
.band {
  background:
    radial-gradient(circle at 15% 50%, rgba(255,106,0,.30), transparent 44%),
    radial-gradient(circle at 90% 85%, rgba(255,189,107,.20), transparent 40%),
    linear-gradient(115deg, #0a0c10 0%, #10131a 55%, #0c0e14 100%);
  color: #fff; padding: 76px 0; position: relative; overflow: hidden;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255, 255, 255, .012); backdrop-filter: blur(2px);
}
.band .band-inner { position: relative; text-align: center; }
.band h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; color: #fff; margin: 0 0 14px; text-shadow: 0 5px 22px rgba(0,0,0,.4); }
.band p { color: #d5d9e2; max-width: 640px; margin: 0 auto 28px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--glass-bg); border: 1px solid var(--glass-brd); border-radius: var(--radius);
  backdrop-filter: blur(18px); box-shadow: inset 0 1px 0 var(--glass-hi), var(--shadow-sm);
  padding: 28px 26px; position: relative; color: var(--ink);
}
.testimonial::before {
  content: "“"; font-family: var(--font-head); font-size: 72px; line-height: 1;
  color: var(--orange); position: absolute; top: 6px; right: 18px; opacity: .5;
}
.testimonial q { display: block; color: #e4e7ee; font-size: 14.8px; line-height: 1.6; }
.testimonial .t-author { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.testimonial .t-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-orange); color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 16px rgba(255,90,0,.35);
}
.testimonial .t-name { font-weight: 700; font-size: 14.5px; color: #fff; }
.testimonial .t-date { font-size: 12.5px; color: var(--muted); }
.testimonial .stars { color: var(--orange); letter-spacing: 2px; font-size: 13px; margin-bottom: 10px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.gallery-grid figure { margin: 0; border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; border: 2px solid #e3a83b; box-shadow: 0 0 0 1px rgba(227,168,59,.35), 0 8px 24px rgba(0,0,0,.18); }
.gallery-grid figure img { aspect-ratio: 16/10; object-fit: cover; transition: transform .45s; }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; color: #fff; font-size: 13px;
  background: linear-gradient(180deg, transparent, rgba(8,9,12,.9)); padding: 22px 14px 10px;
}
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 34px; }
.filter-btn {
  border: 1px solid var(--glass-brd); background: var(--glass-bg); color: #dfe3eb;
  backdrop-filter: blur(8px);
  padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; transition: .2s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange-hi); }
.filter-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 6px 18px rgba(255,90,0,.4); }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 1050; background: rgba(6,7,9,.94); display: none; }
.lb.open { display: flex; align-items: center; justify-content: center; }
.lb img { max-height: 86%; max-width: 92%; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.65); }
.lb .lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #dcdce3; font-size: 15px; }
.lb button { position: absolute; top: 16px; right: 20px; background: none; border: none; cursor: pointer; color: #fff; font-size: 34px; }
.lb .lb-prev, .lb .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 28px; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; }
.lb .lb-prev:hover, .lb .lb-next:hover { background: var(--orange); }
.lb .lb-prev { left: 22px; }
.lb .lb-next { right: 72px; }

/* ============================================================
   VIDEO
   ============================================================ */
.video-card { border-radius: var(--radius); overflow: hidden; background: var(--glass-bg); box-shadow: var(--shadow-sm); cursor: pointer; position: relative; border: 1px solid var(--glass-brd); }
.video-card .thumb img { aspect-ratio: 16/9; object-fit: cover; }
.video-card .play { position: absolute; inset: 0 0 46%; display: grid; place-items: center; }
.video-card .play::before { content: ""; width: 74px; height: 74px; border-radius: 50%; background: var(--grad-orange); box-shadow: 0 12px 30px rgba(255,90,0,.5); }
/* White play-triangle drawn as an inline SVG so it always renders (font-safe) */
.video-card .play::after {
  content: "";
  position: absolute;
  width: 34px; height: 36px;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: url("data:image/svg+xml;utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='%23ffffff'%20d='M8%204%20L8%2020%20L20%2012%20Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.video-card .vtitle { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px 12px; color: #fff; font-weight: 600; font-size: 15px; background: linear-gradient(180deg, transparent 0%, rgba(8,9,12,.94) 60%); text-align: left; }
.video-frame { position: relative; aspect-ratio: 16/9; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   CONTACT / FORMS — glass
   ============================================================ */
.contact-card {
  border: 1px solid var(--glass-brd); background: var(--glass-bg); border-radius: var(--radius);
  backdrop-filter: blur(16px); box-shadow: inset 0 1px 0 var(--glass-hi), var(--shadow-sm);
  padding: 26px; color: var(--ink);
}
.contact-card h3 { font-size: 19px; color: #fff; }
.contact-card a { color: var(--orange); font-weight: 600; }
.contact-card a:hover { color: var(--orange-hi); }
.contact-card .c-desc { color: var(--muted); font-size: 13.5px; }

.form-card {
  background: var(--glass-bg); border: 1px solid var(--glass-brd); border-radius: var(--radius);
  backdrop-filter: blur(22px); box-shadow: inset 0 1px 0 var(--glass-hi), var(--shadow-soft);
  padding: 34px 30px; color: var(--ink);
}
.form-card h3 { font-family: var(--font-head); color: #fff; font-size: 24px; margin-bottom: 4px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.input, .textarea, select.input, .form-control {
  width: 100%; padding: 13px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px;
  font-family: inherit; font-size: 15px; background: rgba(255,255,255,.07); color: #eef0f6;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input::placeholder, .textarea::placeholder { color: #6d7480; }
.input:focus, .textarea:focus, .form-control:focus {
  outline: none; border-color: var(--orange); background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 4px rgba(255,106,0,.2);
}
.captcha-row { display: flex; align-items: center; gap: 12px; }
.captcha-row img { border-radius: 8px; border: 1px solid rgba(255,255,255,.16); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--glass-brd); aspect-ratio: 16/9; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }

/* ------------------------------------------------------------------
   INFO LIST (attractions page)
   ------------------------------------------------------------------ */
.info-list { counter-reset: inf; }
.info-item {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--glass-bg); border: 1px solid var(--glass-brd); border-radius: var(--radius);
  backdrop-filter: blur(16px); box-shadow: inset 0 1px 0 var(--glass-hi), var(--shadow-sm);
  padding: 22px 24px; margin-bottom: 14px; transition: .22s;
}
.info-item:hover { border-color: rgba(255,106,0,.5); transform: translateX(4px); background: rgba(24,27,38,.6); }
.info-item .num { counter-increment: inf; font-family: var(--font-head); color: var(--orange-hi); font-size: 24px; min-width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; border: 2px solid var(--orange); box-shadow: 0 6px 16px rgba(255,90,0,.25); }
.info-item .num::before { content: counter(inf); }
.info-item h4 { font-size: 17.5px; color: #fff; margin: 0 0 6px; }
.info-item p { color: var(--muted); font-size: 14.5px; margin: 0; }
.info-item .dist { margin-left: auto; color: var(--orange-hi); background: rgba(255,106,0,.16); padding: 5px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; white-space: nowrap; }

/* Restaurant listing links (name / phone / address) */
.info-item h4 .rname { color: #fff; text-decoration: none; font-size: 17.5px; }
.info-item h4 .rname:hover { color: var(--orange-hi); }
.info-item .rpt { display: block; font-size: 14px; margin-top: 2px; color: var(--muted); }
.info-item .rpt a { color: var(--muted); text-decoration: none; }
.info-item .rpt a:hover { color: var(--orange-hi); }
.info-item .rpt svg { vertical-align: -2px; opacity: .7; }
.info-item .rdesc { display: block; font-size: 13.5px; margin: 4px 0 2px; color: #b6bcc9; font-weight: 400; }
.info-item .sep { color: var(--muted); opacity: .55; }

/* ============================================================
   POLICY
   ============================================================ */
.policy-card {
  display: flex; gap: 18px;
  background: var(--glass-bg); border: 1px solid var(--glass-brd); border-radius: var(--radius);
  backdrop-filter: blur(16px); box-shadow: inset 0 1px 0 var(--glass-hi), var(--shadow-sm);
  padding: 22px;
}
.policy-card .pic { width: 52px; height: 52px; flex: none; border-radius: 14px; display: grid; place-items: center; background: var(--grad-orange); box-shadow: 0 8px 18px rgba(255,90,0,.35); }
.policy-card .pic svg { width: 26px; height: 26px; fill: #fff; }
.policy-card h4 { font-size: 16.5px; color: #fff; margin-bottom: 6px; }
.policy-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background:
    radial-gradient(circle at 50% 30%, rgba(255,106,0,.12), transparent 55%),
    linear-gradient(160deg, #0a0c10 0%, #0e1117 100%);
  color: #fff; padding: 50px 0;
  border-top: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
}
.stats .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 26px; text-align: center; }
.stat .num { font-family: var(--font-head); font-size: 46px; color: var(--orange-hi); line-height: 1; text-shadow: 0 3px 14px rgba(255,106,0,.3); }
.stat .label { font-size: 14px; color: #b3b9c5; margin-top: 8px; text-transform: uppercase; letter-spacing: .1em; }

/* ============================================================
   FOOTER — glass
   ============================================================ */
.site-footer {
  background:
    radial-gradient(circle at 85% 10%, rgba(255,106,0,.10), transparent 40%),
    rgba(9,11,15,.86);
  backdrop-filter: blur(14px);
  color: #c6ccd8; padding: 68px 0 0;
  border-top: 2px solid var(--orange);
}
.f-col h4 { font-family: var(--font-head); color: var(--orange-hi); font-size: 18px; margin-bottom: 16px; }
.f-col p, .f-col a { font-size: 14.5px; color: #c0c6d2; }
.f-col a:hover { color: var(--orange-hi); }
.f-col ul { list-style: none; padding: 0; }
.f-col li { margin-bottom: 8px; }
.f-col li a::before { content: "› "; color: var(--orange); }
.f-social { display: flex; gap: 12px; }
.f-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--glass-brd); background: var(--glass-bg); backdrop-filter: blur(6px); transition: .2s; }
.f-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.f-social svg { width: 18px; height: 18px; fill: #c6ccd8; }
.f-social a:hover svg { fill: #fff; }
.foot-bottom { padding: 40px 0; border-top: 1px solid rgba(255,255,255,.12); text-align: center; font-size: 13.5px; color: #8e94a2; }
.foot-bottom a { color: var(--amber); }
.foot-bottom .heart { color: var(--orange); }

/* ============================================================
   REVEAL ANIMATIONS (only hide when JS available)
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 1040; width: 48px; height: 48px;
  border-radius: 50%; background: var(--grad-orange); color: #fff; border: none; cursor: pointer;
  opacity: 0; pointer-events: none; transition: .3s; font-size: 19px; box-shadow: 0 12px 28px rgba(255,90,0,.5);
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 720px) {
  .section { padding-block: 56px; }
  .hero { min-height: 560px; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer .container { grid-template-columns: 1fr; }
  .info-item .dist { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   Form submission feedback toast (driven by ?msg= in URL)
   ============================================================ */
.form-msg {
  background: #eef8ef;
  border: 1px solid #2e9e5b;
  color: #145214;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  font-family: inherit; font-size: 15px;
  width: auto;
  text-align: center;
  transition: opacity .4s, transform .4s;
}
.form-msg strong { font-size: 17px; display: block; }
.form-msg--err {
  background: #fdeeee;
  border-color: #cf3a3a;
  color: #7a1e1e;
}
.form-msg--hide { opacity: 0; transform: translate(-50%, -20px); }
