/* ============================================================
   blissriva.com — global stylesheet
   Palette: deep midnight navy + warm gold (no pure black/white)
   Naming: BEM-ish for custom components, Bootstrap stays default
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
  --br-bg: #0d1526;
  --br-bg-2: #101b31;
  --br-surface: #15233d;
  --br-surface-2: #1a2a47;
  --br-line: rgba(233, 237, 245, 0.09);
  --br-gold: #d9a441;
  --br-gold-2: #f0c573;
  --br-teal: #4ecdc4;
  --br-text: #e9edf5;
  --br-muted: #9aa8bf;
  --br-radius: 1.25rem;
  --br-shadow: 0 1.5rem 4rem rgba(3, 8, 20, 0.55);
}

/* ---------- Base ---------- */

html {
  scroll-behavior: smooth;overflow-x:hidden
}

body {
  background-color: var(--br-bg);
  color: var(--br-text);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display-font {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

a {
  color: var(--br-gold-2);
  text-decoration: none;
}

a:hover {
  color: var(--br-gold);
}

::selection {
  background: rgba(217, 164, 65, 0.35);
  color: #fff;
}

img {
  max-width: 100%;
}

.text-muted-soft {
  color: var(--br-muted) !important;
}

.grad-text {
  background: linear-gradient(120deg, var(--br-gold-2), var(--br-gold) 60%, #b97f22);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */

.btn-gold {
  background: linear-gradient(120deg, var(--br-gold-2), var(--br-gold));
  border: none;
  color: #231a05;
  font-weight: 700;
  border-radius: 2rem;
  padding: 0.65rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover, .btn-gold:focus {
  color: #231a05;
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2rem rgba(217, 164, 65, 0.35);
}

.btn-ghost {
  border: 1px solid var(--br-line);
  color: var(--br-text);
  border-radius: 2rem;
  padding: 0.65rem 1.6rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.btn-ghost:hover, .btn-ghost:focus {
  border-color: var(--br-gold);
  color: var(--br-gold-2);
  background: rgba(217, 164, 65, 0.08);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */

.topbar {
  background: var(--br-bg-2);
  border-bottom: 1px solid var(--br-line);
  font-size: 0.8rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--br-muted);
  white-space: nowrap;
}

.topbar__item i {
  color: var(--br-gold);
  font-size: 0.75rem;
}

.topbar__link:hover {
  color: var(--br-gold-2);
}

.main-nav {
  background: rgba(13, 21, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--br-line);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.is-scrolled {
  background: rgba(13, 21, 38, 0.96);
  box-shadow: 0 0.5rem 2rem rgba(3, 8, 20, 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand__logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--br-text);
}

.brand__accent {
  color: var(--br-gold);
}

.main-nav .nav-link {
  color: var(--br-muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  position: relative;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: linear-gradient(90deg, var(--br-gold-2), var(--br-gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--br-text);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-toggler {
  border: 1px solid var(--br-line);
  color: var(--br-gold-2);
  font-size: 1.15rem;
  padding: 0.4rem 0.75rem;
}

.nav-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(217, 164, 65, 0.25);
}

/* ---------- Sections ---------- */

.section {
  padding: 6rem 0;
  position: relative;
}

.section--alt {
  background: var(--br-bg-2);
}

.section--tight {
  padding: 4rem 0;
}

/* Sections with a photo background — url(../images/blissriva_cb093156a78be.86363490.jpg) stays empty, photo.js fills it */
.section--photo {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-head {
  max-width: 44rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-head--left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--br-gold);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--br-gold);
}

.section-head .eyebrow::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--br-gold);
}

.section-lead {
  color: var(--br-muted);
  font-size: 1.06rem;
  margin-bottom: 0;
}

/* Decorative glow orbs — pure CSS, no SVG */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.orb--gold {
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.4), transparent 65%);
}

.orb--blue {
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(70, 110, 220, 0.32), transparent 65%);
}

.orb--teal {
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.28), transparent 65%);
}

/* Thin gradient divider used between major blocks */
.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.5), transparent);
  border: none;
  margin: 0;
}

/* ---------- Hero ---------- */

.hero {
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero--photo {
  background-size: cover;
  background-position: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(217, 164, 65, 0.4);
  background: rgba(217, 164, 65, 0.1);
  color: var(--br-gold-2);
  border-radius: 2rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--br-muted);
  max-width: 38rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--br-line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--br-muted);
}

.hero__chip i {
  color: var(--br-gold);
}

/* ---------- Cards & tiles ---------- */

.glass {
  background: rgba(21, 35, 61, 0.55);
  border: 1px solid var(--br-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--br-radius);
}

.feature-tile {
  background: var(--br-surface);
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 164, 65, 0.45);
}

.icon-chip {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.22), rgba(217, 164, 65, 0.06));
  border: 1px solid rgba(217, 164, 65, 0.35);
  color: var(--br-gold-2);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.icon-chip--teal {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(78, 205, 196, 0.05));
  border-color: rgba(78, 205, 196, 0.35);
  color: var(--br-teal);
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--br-gold-2);
  line-height: 1;
}

.stat__label {
  color: var(--br-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* Trip / service cards */
.trip-card {
  background: var(--br-surface);
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 164, 65, 0.45);
  box-shadow: var(--br-shadow);
}

.trip-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.trip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trip-card:hover .trip-card__media img {
  transform: scale(1.06);
}

.trip-card__flag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(13, 21, 38, 0.85);
  border: 1px solid rgba(217, 164, 65, 0.4);
  color: var(--br-gold-2);
  border-radius: 2rem;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.trip-card__body {
  padding: 1.6rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.trip-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--br-muted);
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.trip-card__meta i {
  color: var(--br-gold);
  margin-right: 0.3rem;
}

.trip-card__title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.trip-card__text {
  color: var(--br-muted);
  font-size: 0.93rem;
}

.trip-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0 1.25rem;
}

.trip-card__tag {
  border: 1px solid var(--br-line);
  border-radius: 2rem;
  padding: 0.2rem 0.75rem;
  font-size: 0.74rem;
  color: var(--br-muted);
}

.trip-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trip-card__price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--br-text);
}

.trip-card__price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--br-muted);
}

/* Destination card — tall photo card, bg filled later via inline url(../images/blissriva_da7793b8e8b2d.51410090.jpg) */
.dest-card {
  position: relative;
  border-radius: var(--br-radius);
  overflow: hidden;
  min-height: 26rem;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--br-line);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--br-shadow);
}

.dest-card__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(13, 21, 38, 0.92) 45%);
}

.dest-card__meta {
  display: flex;
  gap: 1rem;
  color: var(--br-gold-2);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dest-card__text {
  color: var(--br-muted);
  font-size: 0.9rem;
}

/* Steps */
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step__num {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(217, 164, 65, 0.5);
  color: var(--br-gold-2);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: rgba(217, 164, 65, 0.08);
}

.step__title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.step__text {
  color: var(--br-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Reviews */
.review-card {
  background: var(--br-surface);
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  padding: 1.9rem;
  height: 100%;
  position: relative;
}

.review-card__quote-icon {
  color: var(--br-gold);
  opacity: 0.5;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.review-card__stars {
  color: var(--br-gold);
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.15em;
}

.review-card__text {
  color: var(--br-text);
  font-size: 0.95rem;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.review-card__avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(217, 164, 65, 0.4);
}

.review-card__name {
  font-weight: 700;
  font-size: 0.92rem;
}

.review-card__role {
  color: var(--br-muted);
  font-size: 0.78rem;
}

/* Timeline (about page) */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid rgba(217, 164, 65, 0.35);
}

.timeline__item {
  position: relative;
  padding-bottom: 2.25rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 6px);
  top: 0.35rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--br-gold);
  box-shadow: 0 0 0 5px rgba(217, 164, 65, 0.15);
}

.timeline__year {
  color: var(--br-gold-2);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* Team / project cards */
.team-card {
  background: var(--br-surface);
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.team-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card__body {
  padding: 1.4rem 1.25rem 1.6rem;
}

.team-card__role {
  color: var(--br-gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card__text {
  color: var(--br-muted);
  font-size: 0.85rem;
  margin-top: 0.6rem;
}

/* ---------- Accordion (FAQ) ---------- */

.accordion-dark .accordion-item {
  background: var(--br-surface);
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius) !important;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.accordion-dark .accordion-button {
  background: transparent;
  color: var(--br-text);
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.accordion-dark .accordion-button:not(.collapsed) {
  color: var(--br-gold-2);
  background: rgba(217, 164, 65, 0.06);
}

.accordion-dark .accordion-button::after {
  filter: invert(0.85) sepia(0.4) saturate(3);
}

.accordion-dark .accordion-body {
  color: var(--br-muted);
  border-top: 1px solid var(--br-line);
  padding: 1.25rem 1.5rem;
}

/* ---------- Disclaimer (18+ / responsible gambling) ---------- */

.disclaimer {
  border: 1px solid rgba(217, 164, 65, 0.35);
  background: var(--br-surface);
  border-radius: var(--br-radius);
  padding: 2.25rem;
}

.disclaimer__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--br-text);
}

.disclaimer__text, .disclaimer li {
  color: var(--br-muted);
  font-size: 0.92rem;
}

.disclaimer__warn {
  border: 1px solid rgba(224, 108, 84, 0.4);
  background: rgba(224, 108, 84, 0.08);
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  margin-top: 1.75rem;
}

.disclaimer__warn .disclaimer__title {
  color: #f0917c;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--br-gold);
  color: var(--br-gold-2);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0 0.4rem;
}

/* ---------- Forms ---------- */

.form-dark .form-control,
.form-dark .form-select {
  background: var(--br-bg-2);
  border: 1px solid var(--br-line);
  color: var(--br-text);
  border-radius: 0.8rem;
  padding: 0.75rem 1rem;
}

.form-dark .form-control:focus,
.form-dark .form-select:focus {
  background: var(--br-bg-2);
  border-color: var(--br-gold);
  color: var(--br-text);
  box-shadow: 0 0 0 0.2rem rgba(217, 164, 65, 0.18);
}

.form-dark .form-control::placeholder {
  color: rgba(154, 168, 191, 0.55);
}

.form-dark .form-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--br-text);
}

.form-dark .form-check-input {
  background-color: var(--br-bg-2);
  border-color: var(--br-line);
}

.form-dark .form-check-input:checked {
  background-color: var(--br-gold);
  border-color: var(--br-gold);
}

/* ---------- Modal ---------- */

.modal-dark {
  background: var(--br-surface);
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  color: var(--br-text);
}

.modal-dark__header {
  border-bottom: 1px solid var(--br-line);
}

.modal-dark__note {
  color: var(--br-muted);
  font-size: 0.92rem;
}

.modal-backdrop.show {
  opacity: 0.75;
}

/* ---------- Toasts ---------- */

.toast-dark {
  background: var(--br-surface-2);
  border: 1px solid rgba(217, 164, 65, 0.45);
  color: var(--br-text);
  border-radius: 1rem;
}

.toast-dark .toast-header {
  background: transparent;
  color: var(--br-gold-2);
  border-bottom: 1px solid var(--br-line);
  font-weight: 700;
}

/* ---------- Cookie banner (home only) ---------- */

.cookie-banner {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  max-width: 26rem;
  background: var(--br-surface-2);
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: var(--br-radius);
  padding: 1.4rem 1.5rem;
  z-index: 1055;
  box-shadow: var(--br-shadow);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: cookie-in 0.45s ease;
}

@keyframes cookie-in {
  from { transform: translateY(1.5rem); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__text {
  color: var(--br-muted);
  font-size: 0.88rem;
}

/* ---------- CTA panel ---------- */

.cta-panel {
  position: relative;
  border-radius: calc(var(--br-radius) * 1.4);
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.35);
  padding: 4.5rem 2rem;
  text-align: center;
  background-size: cover;
  background-position: center;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--br-bg-2);
  border-top: 1px solid var(--br-line);
  padding: 4.5rem 0 2rem;
}

.footer__brand {
  margin-bottom: 1.25rem;
}

.footer__about {
  color: var(--br-muted);
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer__socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer__social {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--br-line);
  color: var(--br-muted);
  transition: all 0.25s ease;
}

.footer__social:hover {
  border-color: var(--br-gold);
  color: var(--br-gold-2);
  transform: translateY(-3px);
}

.footer__title {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--br-text);
  margin-bottom: 1.25rem;
}

.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu li {
  margin-bottom: 0.6rem;
}

.footer__menu a {
  color: var(--br-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer__menu a:hover {
  color: var(--br-gold-2);
}

.footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contacts li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--br-muted);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.footer__contacts i {
  color: var(--br-gold);
  margin-top: 0.2rem;
}

.footer__contacts a {
  color: var(--br-muted);
}

.footer__contacts a:hover {
  color: var(--br-gold-2);
}

.footer__divider {
  height: 1px;
  background: var(--br-line);
  margin: 3rem 0 1.75rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

.footer__copy {
  color: var(--br-text);
  font-size: 0.88rem;
  margin: 0;
}

.footer__legal {
  color: var(--br-muted);
  font-size: 0.78rem;
  margin: 0;
}

/* ---------- Misc ---------- */

.map-frame {
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  overflow: hidden;
  width: 100%;
  min-height: 24rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
  display: block;
  filter: grayscale(0.4) contrast(1.05);
}

.img-frame {
  border-radius: var(--br-radius);
  border: 1px solid var(--br-line);
  overflow: hidden;
  position: relative;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--br-muted);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.check-list i {
  color: var(--br-gold);
  margin-top: 0.25rem;
}

/* Breadcrumb-ish page intro */
.page-crumb {
  color: var(--br-muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-crumb a {
  color: var(--br-gold-2);
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
  .section { padding: 4.5rem 0; }
  .hero { padding: 5rem 0 4rem; }
  .section--photo { background-attachment: scroll; }
  .navbar-collapse {
    background: var(--br-surface);
    border: 1px solid var(--br-line);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
  }
  .topbar__inner { justify-content: center; }
}

@media (max-width: 575.98px) {
  .topbar { font-size: 0.72rem; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .cookie-banner { left: 0.75rem; right: 0.75rem; max-width: none; }
}
