/* ==========================================================================
   blisssola — global styles
   Custom Bootstrap color mode "blisssola": warm ivory / deep spruce / bronze.
   Library-first: Bootstrap utilities carry the layout, this file only covers
   what Bootstrap can't (theme tokens, editorial type, bespoke components).
   ========================================================================== */

/* ---- Custom Bootstrap color mode ----------------------------------------- */
[data-bs-theme="blisssola"] {
  color-scheme: light;

  --bs-body-bg: #f6f1e7;
  --bs-body-bg-rgb: 246, 241, 231;
  --bs-body-color: #25322b;
  --bs-body-color-rgb: 37, 50, 43;
  --bs-emphasis-color: #1b2620;
  --bs-emphasis-color-rgb: 27, 38, 32;
  --bs-secondary-color: rgba(37, 50, 43, 0.62);
  --bs-secondary-bg: #ece3d1;
  --bs-tertiary-bg: #efe8d8;
  --bs-border-color: rgba(37, 50, 43, 0.16);
  --bs-border-color-translucent: rgba(37, 50, 43, 0.14);

  --bs-primary: #a5713f;
  --bs-primary-rgb: 165, 113, 63;
  --bs-secondary-rgb: 126, 145, 126;
  --bs-link-color: #8a5a2e;
  --bs-link-color-rgb: 138, 90, 46;
  --bs-link-hover-color: #6f4620;
  --bs-link-hover-color-rgb: 111, 70, 32;
  --bs-heading-color: #1e2b24;

  --bs-card-bg: #fdfaf3;
  --bs-card-border-color: rgba(37, 50, 43, 0.12);
  --bs-modal-bg: #f9f4ea;
  --bs-modal-color: #25322b;
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: #efe6d3;
  --bs-accordion-active-color: #1e2b24;
  --bs-accordion-btn-focus-box-shadow: none;

  /* Brand tokens — not part of Bootstrap, used across bespoke blocks */
  --bl-ivory: #f6f1e7;
  --bl-ivory-2: #efe7d6;
  --bl-ink: #223129;
  --bl-ink-deep: #17221d;
  --bl-bronze: #a5713f;
  --bl-gold: #c9a25f;
  --bl-sage: #7e917e;
  --bl-cream: #f2ead9;
  --bl-line: rgba(37, 50, 43, 0.16);
  --bl-line-light: rgba(242, 234, 217, 0.18);

  --bl-font-display: "Fraunces", "Georgia", serif;
  --bl-font-body: "Manrope", "Segoe UI", sans-serif;
}

/* ---- Base ---------------------------------------------------------------- */
body,html {
  font-family: var(--bl-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--bl-bronze);
  color: var(--bl-cream);
}

h1, h2, h3, .display-font {
  font-family: var(--bl-font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h4, h5, h6 { font-family: var(--bl-font-body); font-weight: 700; }

img { max-width: 100%; }

/* Thin elegant rules used between editorial blocks */
.rule {
  border: 0;
  border-top: 1px solid var(--bl-line);
}
.rule--light { border-top-color: var(--bl-line-light); }

.section { padding: clamp(4rem, 8vw, 7.5rem) 0; position: relative; }
.section--tint { background: var(--bl-ivory-2); }
.section--ink {
  background: var(--bl-ink-deep);
  color: var(--bl-cream);
}
.section--ink h1, .section--ink h2, .section--ink h3,
.section--ink .display-font { color: var(--bl-cream); }
.section--ink .text-muted, .ink-muted { color: rgba(242, 234, 217, 0.6) !important; }
.section--ink .rule { border-top-color: var(--bl-line-light); }

/* Small caps eyebrow label with a dash */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bl-bronze);
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--center::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section--ink .eyebrow { color: var(--bl-gold); }

/* Headings sitting on photo/dark panels must stay light */
.hero h1, .hero h2, .hero h3,
.page-hero h1, .page-hero h2,
.cta-portal h1, .cta-portal h2, .cta-portal h3,
.mini-hotel h3, .duo__panel h3,
.bento__cell--media h3, .lamella h3,
.portrait__tag h3, .tile--ink h3,
.tile--ink .tile__price { color: var(--bl-cream); }

.display-hero {
  font-size: clamp(2.6rem, 7.2vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.display-2x {
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* Oversized outlined numeral used as a decorative ghost figure */
.ghost-num {
  font-family: var(--bl-font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(165, 113, 63, 0.45);
}
.section--ink .ghost-num { -webkit-text-stroke-color: rgba(201, 162, 95, 0.5); }

/* Images: cover behaviour + thin editorial frame */
.img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame {
  position: relative;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border: 1px solid rgba(242, 234, 217, 0.5);
  pointer-events: none;
}
.frame--ink::after { border-color: var(--bl-line); }

/* Frosted chip — used over photography */
.glass {
  background: rgba(246, 241, 231, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1rem;
}
.glass--dark {
  background: rgba(23, 34, 29, 0.55);
  border-color: rgba(242, 234, 217, 0.18);
  color: var(--bl-cream);
}

/* Rotated geo tag pinned to image edges */
.geo-tag {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bl-cream);
  opacity: 0.85;
}

/* Buttons — bronze primary action + quiet ink variant */
.btn-bronze {
  --bs-btn-bg: var(--bl-bronze);
  --bs-btn-border-color: var(--bl-bronze);
  --bs-btn-color: #fff8ec;
  --bs-btn-hover-bg: #8a5a2e;
  --bs-btn-hover-border-color: #8a5a2e;
  --bs-btn-hover-color: #fff8ec;
  --bs-btn-active-bg: #7a4f27;
  --bs-btn-active-border-color: #7a4f27;
  --bs-btn-active-color: #fff8ec;
  border-radius: 100px;
  padding: 0.85rem 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.btn-ink {
  --bs-btn-bg: var(--bl-ink);
  --bs-btn-border-color: var(--bl-ink);
  --bs-btn-color: var(--bl-cream);
  --bs-btn-hover-bg: #101915;
  --bs-btn-hover-border-color: #101915;
  --bs-btn-hover-color: var(--bl-cream);
  --bs-btn-active-bg: #101915;
  --bs-btn-active-border-color: #101915;
  border-radius: 100px;
  padding: 0.85rem 1.9rem;
  font-weight: 700;
}
.btn-outline-ink {
  --bs-btn-color: var(--bl-ink);
  --bs-btn-border-color: var(--bl-ink);
  --bs-btn-hover-bg: var(--bl-ink);
  --bs-btn-hover-border-color: var(--bl-ink);
  --bs-btn-hover-color: var(--bl-cream);
  --bs-btn-active-bg: var(--bl-ink);
  --bs-btn-active-color: var(--bl-cream);
  border-radius: 100px;
  padding: 0.85rem 1.9rem;
  font-weight: 700;
}
.btn-outline-cream {
  --bs-btn-color: var(--bl-cream);
  --bs-btn-border-color: rgba(242, 234, 217, 0.55);
  --bs-btn-hover-bg: var(--bl-cream);
  --bs-btn-hover-border-color: var(--bl-cream);
  --bs-btn-hover-color: var(--bl-ink-deep);
  --bs-btn-active-bg: var(--bl-cream);
  border-radius: 100px;
  padding: 0.85rem 1.9rem;
  font-weight: 700;
}
.btn-link-arrow {
  font-weight: 700;
  text-decoration: none;
  color: var(--bl-bronze);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-link-arrow i { transition: transform 0.25s ease; }
.btn-link-arrow:hover i { transform: translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--bl-ink-deep);
  color: rgba(242, 234, 217, 0.75);
  font-size: 0.78rem;
}
.topbar a { color: var(--bl-cream); text-decoration: none; }
.topbar a:hover { color: var(--bl-gold); }
.topbar .topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}
.topbar i { color: var(--bl-gold); font-size: 0.7rem; }

.main-nav {
  background: rgba(246, 241, 231, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bl-line);
  transition: box-shadow 0.3s ease;
}
.main-nav.is-scrolled { box-shadow: 0 8px 30px rgba(23, 34, 29, 0.12); }
.main-nav .navbar-brand img { height: 40px; width: auto; }
.main-nav .nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bl-ink);
  padding-inline: 0.9rem;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.is-active { color: var(--bl-bronze); }
.main-nav .navbar-toggler {
  border: 1px solid var(--bl-line);
  border-radius: 100px;
  padding: 0.5rem 0.9rem;
}
.main-nav .navbar-toggler:focus { box-shadow: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bl-ink-deep);
  color: rgba(242, 234, 217, 0.72);
}
.site-footer h2, .site-footer h3, .site-footer h4,
.site-footer h5, .site-footer h6 { color: var(--bl-cream); }
.site-footer a { color: rgba(242, 234, 217, 0.72); text-decoration: none; }
.site-footer a:hover { color: var(--bl-gold); }
.footer-grid { border-top: 1px solid var(--bl-line-light); }
.footer-clock {
  border-bottom: 1px solid var(--bl-line-light);
}
.footer-clock .clock-item { min-width: 130px; }
.footer-clock .clock-time {
  font-family: var(--bl-font-display);
  font-size: 1.4rem;
  color: var(--bl-cream);
  font-variant-numeric: tabular-nums;
}
.footer-nav li { margin-bottom: 0.55rem; }
.footer-contact i { color: var(--bl-gold); width: 1.1rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--bl-line-light);
  border-radius: 50%;
  color: var(--bl-cream);
  transition: 0.25s ease;
}
.footer-social a:hover { background: var(--bl-bronze); border-color: var(--bl-bronze); }
.footer-legal { border-top: 1px solid var(--bl-line-light); font-size: 0.78rem; }

/* ==========================================================================
   Hero (home) — editorial full-bleed panorama
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--bl-cream);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero__inner { position: relative; z-index: 2; }
.hero__title { max-width: 14ch; }
.hero__play {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 1px solid rgba(242, 234, 217, 0.55);
  color: var(--bl-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  background: transparent;
}
.hero__play:hover { background: var(--bl-bronze); border-color: var(--bl-bronze); transform: scale(1.05); }

.hero__weather {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: 22%;
  z-index: 3;
  padding: 1.1rem 1.3rem;
  min-width: 190px;
}
.hero__weather .temp {
  font-family: var(--bl-font-display);
  font-size: 2.4rem;
  line-height: 1;
}

/* Bottom booking ribbon — glass console, NOT a search form */
.hero__ribbon {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(242, 234, 217, 0.22);
  background: rgba(23, 34, 29, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.ribbon-chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--bl-cream);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-right: 1px solid rgba(242, 234, 217, 0.16);
  transition: 0.25s ease;
}
.ribbon-chip:last-of-type { border-right: 0; }
.ribbon-chip:hover { color: var(--bl-gold); }
.ribbon-chip i { color: var(--bl-gold); }
.ribbon-chip small {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ==========================================================================
   Bento grid
   ========================================================================== */
.bento {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(150px, auto);
}
.bento__cell {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--bl-line);
  background: var(--bl-ivory-2);
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento__cell--lead { grid-column: span 7; grid-row: span 2; }
.bento__cell--stat { grid-column: span 5; }
.bento__cell--media { grid-column: span 5; grid-row: span 2; min-height: 340px; border: 0; color: var(--bl-cream); }
.bento__cell--audio { grid-column: span 7; }
.bento__cell--media { background-size: cover; background-position: center; }
.bento__cell--media > * { position: relative; z-index: 2; }

.bento__stat-num {
  font-family: var(--bl-font-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1;
}
.bento__tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(23, 34, 29, 0.55);
  color: var(--bl-cream);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* Fake equalizer for the ambience cell — decorative until real audio lands */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 1.4rem; }
.eq span {
  width: 3px;
  background: var(--bl-bronze);
  border-radius: 2px;
  height: 30%;
}
.eq.is-on span { animation: eq-bounce 0.9s ease-in-out infinite; }
.eq.is-on span:nth-child(2) { animation-delay: 0.15s; }
.eq.is-on span:nth-child(3) { animation-delay: 0.3s; }
.eq.is-on span:nth-child(4) { animation-delay: 0.45s; }
.eq.is-on span:nth-child(5) { animation-delay: 0.6s; }
@keyframes eq-bounce {
  0%, 100% { height: 25%; }
  50% { height: 100%; }
}

/* ==========================================================================
   Kinetic marquee + film strip
   ========================================================================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}
.marquee__track {
  display: inline-flex;
  align-items: baseline;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: marquee-move 34s linear infinite;
}
.marquee__item {
  font-family: var(--bl-font-display);
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(37, 50, 43, 0.35);
  transition: 0.3s;
}
.marquee__item--fill { color: var(--bl-ink); -webkit-text-stroke: 0; }
@keyframes marquee-move {
  to { transform: translateX(-50%); }
}

.film-strip { position: relative; }
.film-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(23, 34, 29, 0.45);
  border: 5px solid #fffdf7;
  aspect-ratio: 4 / 5;
}
.film-card img { width: 100%; height: 100%; object-fit: cover; }
.film-card--1 { transform: rotate(-5deg) translateY(0.8rem); z-index: 1; }
.film-card--2 { transform: rotate(2deg); z-index: 2; margin-top: -3.5rem; }
.film-card--3 { transform: rotate(6deg) translateY(1.2rem); z-index: 3; margin-top: -4rem; }
.film-card .film-card__pin {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bl-cream);
  background: rgba(23, 34, 29, 0.55);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* ==========================================================================
   Magazine spread
   ========================================================================== */
.mag-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.6rem;
}
.mag-photo img { width: 100%; height: 100%; object-fit: cover; }
.coords {
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--bl-bronze);
}
.mini-hotel {
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  color: var(--bl-cream);
  overflow: hidden;
}
.dropcap::first-letter {
  font-family: var(--bl-font-display);
  font-size: 3.4em;
  line-height: 0.85;
  float: left;
  padding-right: 0.12em;
  color: var(--bl-bronze);
}

/* ==========================================================================
   Lamella accordion (signature journeys)
   ========================================================================== */
.lamellas {
  display: flex;
  gap: 0.7rem;
  min-height: 540px;
}
.lamella {
  position: relative;
  flex: 1 1 0;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  color: var(--bl-cream);
  transition: flex 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: flex-end;
  min-width: 0;
}
.lamella.is-active { flex: 3.2 1 0; }
.lamella__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem;
  z-index: 2;
}
.lamella__title {
  font-family: var(--bl-font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin: 0;
  white-space: nowrap;
}
.lamella:not(.is-active) .lamella__title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  translate: -50% 0;
}
.lamella__body {
  max-width: 34rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}
.lamella.is-active .lamella__body { opacity: 1; transform: none; }
.lamella__price { color: var(--bl-gold); font-weight: 800; }
.lamella__meta {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ==========================================================================
   Journey timeline
   ========================================================================== */
.timeline {
  position: relative;
  padding-left: 2.6rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  border-left: 2px dashed rgba(165, 113, 63, 0.5);
}
.timeline__item { position: relative; padding-bottom: 1.6rem; }
.timeline__dot {
  position: absolute;
  left: -2.6rem;
  top: 0.25rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 3px solid var(--bl-ivory);
  background: var(--bl-bronze);
  box-shadow: 0 0 0 2px var(--bl-bronze);
}
.timeline__item.is-active .timeline__dot { background: var(--bl-ink); box-shadow: 0 0 0 2px var(--bl-ink); }
.timeline__day {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bl-bronze);
  font-weight: 800;
}
.day-card {
  border: 1px solid var(--bl-line);
  border-radius: 1.1rem;
  background: #fdfaf3;
  overflow: hidden;
}
.day-card img { height: 220px; width: 100%; object-fit: cover; }
.spec-pill {
  border: 1px solid var(--bl-line);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  background: #fdfaf3;
}
.spec-pill i { color: var(--bl-bronze); }

/* ==========================================================================
   Cards — trips / destinations / casino / events / team
   ========================================================================== */
.tile {
  border: 1px solid var(--bl-line);
  border-radius: 1.3rem;
  background: #fdfaf3;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(23, 34, 29, 0.4);
}
.tile__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tile:hover .tile__media img { transform: scale(1.06); }
.tile__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(246, 241, 231, 0.9);
  color: var(--bl-ink);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}
.tile__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tile__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bl-bronze);
}
.tile__meta i { margin-right: 0.3rem; }
.tile__price {
  font-family: var(--bl-font-display);
  font-size: 1.6rem;
}
.tile ul.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li {
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--bs-secondary-color);
}
.tick-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.55rem;
  font-size: 0.7rem;
  color: var(--bl-bronze);
}

/* Team portrait — grayscale to colour on hover */
.portrait {
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.portrait:hover img { filter: grayscale(0); transform: scale(1.04); }
.portrait__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem;
  background: linear-gradient(transparent, rgba(23, 34, 29, 0.85));
  color: var(--bl-cream);
}

/* Polaroid testimonial card */
.polaroid {
  background: #fffdf7;
  padding: 0.9rem 0.9rem 0;
  border-radius: 0.4rem;
  box-shadow: 0 30px 60px -25px rgba(23, 34, 29, 0.45);
  transform: rotate(3.5deg);
  max-width: 320px;
}
.polaroid img { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
.polaroid figcaption {
  font-family: var(--bl-font-display);
  font-style: italic;
  padding: 0.8rem 0.3rem;
  text-align: center;
}

/* Perks / feature matrix */
.matrix {
  border: 1px solid var(--bl-line-light);
  border-radius: 1.3rem;
  overflow: hidden;
}
.matrix__cell {
  padding: clamp(1.4rem, 2.4vw, 2.4rem);
  border-bottom: 1px solid var(--bl-line-light);
  position: relative;
}
.matrix__cell i.corner {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  color: var(--bl-gold);
  opacity: 0.8;
}
.matrix__num {
  font-family: var(--bl-font-display);
  font-size: 2.6rem;
  color: var(--bl-gold);
  line-height: 1;
}
@media (min-width: 768px) {
  .matrix__cell:nth-child(odd) { border-right: 1px solid var(--bl-line-light); }
  .matrix__cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ==========================================================================
   Page hero (subpages) + editorial strips
   ========================================================================== */
.page-hero {
  position: relative;
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  color: var(--bl-cream);
  background-size: cover;
  background-position: center;
}
.page-hero__crumbs {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.7);
}
.page-hero__crumbs a { color: var(--bl-gold); text-decoration: none; }

.stat-block .stat-num {
  font-family: var(--bl-font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1;
  color: var(--bl-bronze);
}
.section--ink .stat-block .stat-num { color: var(--bl-gold); }

/* Steps */
.step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--bl-bronze);
  color: var(--bl-bronze);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bl-font-display);
  font-size: 1.25rem;
}

/* ==========================================================================
   Forms / modal / toast / cookie banner
   ========================================================================== */
.form-control, .form-select {
  background-color: #fdfaf3;
  border: 1px solid var(--bl-line);
  border-radius: 0.8rem;
  padding: 0.8rem 1.1rem;
}
.form-control:focus, .form-select:focus {
  background-color: #fffdf7;
  border-color: var(--bl-bronze);
  box-shadow: 0 0 0 0.2rem rgba(165, 113, 63, 0.18);
}
.section--ink .form-control, .section--ink .form-select {
  background-color: rgba(242, 234, 217, 0.06);
  border-color: var(--bl-line-light);
  color: var(--bl-cream);
}
.section--ink .form-control::placeholder { color: rgba(242, 234, 217, 0.45); }
.section--ink .form-control:focus {
  background-color: rgba(242, 234, 217, 0.1);
  color: var(--bl-cream);
}
.form-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.form-note {
  display: none;
  border-radius: 0.8rem;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
}
.form-note.is-visible { display: block; }
.form-note--ok { background: rgba(126, 145, 126, 0.18); border: 1px solid rgba(126, 145, 126, 0.5); }
.form-note--err { background: rgba(165, 90, 60, 0.12); border: 1px solid rgba(165, 90, 60, 0.4); }

.modal-content {
  border-radius: 1.4rem;
  border: 1px solid var(--bl-line);
  overflow: hidden;
}
.modal-header { border-bottom: 1px solid var(--bl-line); }

.toast-stack {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.toast-stack .toast {
  background: var(--bl-ink-deep);
  color: var(--bl-cream);
  border: 1px solid var(--bl-line-light);
  border-radius: 0.9rem;
}

.cookie-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  z-index: 1080;
  width: min(680px, calc(100vw - 2rem));
  display: none;
}
.cookie-bar.is-visible { display: block; }

/* ==========================================================================
   Disclaimer (18+ / responsible gambling)
   ========================================================================== */
.disclaimer {
  border: 1px solid var(--bl-line);
  border-radius: 1.3rem;
  background: #fdfaf3;
}
.disclaimer h3, .disclaimer h4 { font-family: var(--bl-font-display); }
.disclaimer .warn-band {
  background: #f4e3d4;
  border: 1px solid rgba(165, 113, 63, 0.35);
  border-radius: 1rem;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.6rem;
  border-radius: 0.6rem;
  background: var(--bl-ink-deep);
  color: var(--bl-cream);
  font-weight: 800;
  font-size: 1rem;
}

/* FAQ accordion tweaks */
.accordion-item {
  border: 0;
  border-bottom: 1px solid var(--bl-line);
}
.accordion-button {
  font-family: var(--bl-font-display);
  font-size: 1.15rem;
  padding: 1.3rem 0.5rem;
}
.accordion-button:not(.collapsed) { color: var(--bl-bronze); }
.accordion-body { padding: 0 0.5rem 1.4rem; color: var(--bs-secondary-color); }

/* Reviews */
.review-card {
  border: 1px solid var(--bl-line);
  border-radius: 1.1rem;
  background: #fdfaf3;
  padding: 1.6rem;
  height: 100%;
}
.review-card .stars { color: var(--bl-gold); font-size: 0.8rem; }

/* Map embed */
.map-frame {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: 1.2rem;
  filter: sepia(0.25) saturate(0.85);
}

/* Contact icon tiles */
.contact-tile {
  border: 1px solid var(--bl-line);
  border-radius: 1.1rem;
  background: #fdfaf3;
  padding: 1.5rem;
  height: 100%;
}
.contact-tile i {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(165, 113, 63, 0.12);
  color: var(--bl-bronze);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Masonry-ish editorial strip (legal pages + galleries) */
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.strip-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.9rem;
  aspect-ratio: 3/4;
}
.strip-grid img:nth-child(2n) { aspect-ratio: 4/5; transform: translateY(1.2rem); }

/* CTA portal */
.cta-portal {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--bl-cream);
  border-radius: 1.6rem;
  overflow: hidden;
}
.cta-portal__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
}
.dot-live {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #6fd68a;
  box-shadow: 0 0 0 0 rgba(111, 214, 138, 0.6);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  70% { box-shadow: 0 0 0 10px rgba(111, 214, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 214, 138, 0); }
}

/* Split dual panel (casino teaser, dual philosophy) */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.duo__panel {
  position: relative;
  border-radius: 1.3rem;
  overflow: hidden;
  min-height: 380px;
  color: var(--bl-cream);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.35s ease;
}
.duo__panel:hover { transform: scale(0.995); }
.duo__panel > div { position: relative; z-index: 2; padding: 2rem; width: 100%; }
.duo__panel .pill {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(246, 241, 231, 0.92);
  color: var(--bl-ink);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* ==========================================================================
   Responsive behaviour
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero__weather { display: none; }
  .bento__cell--lead, .bento__cell--stat,
  .bento__cell--media, .bento__cell--audio { grid-column: 1 / -1; grid-row: auto; }
  .bento__cell--media { min-height: 320px; }

  /* Lamellas become a vertical accordion */
  .lamellas { flex-direction: column; min-height: 0; }
  .lamella { min-height: 92px; flex: none; transition: min-height 0.45s ease; }
  .lamella.is-active { min-height: 420px; flex: none; }
  .lamella:not(.is-active) .lamella__title {
    writing-mode: horizontal-tb;
    transform: none;
    position: static;
    translate: none;
  }
  .lamella__body { display: none; }
  .lamella.is-active .lamella__body { display: block; }

  .duo { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { padding-left: 2.2rem; }
  .marquee__track { animation-duration: 48s; }
}

@media (max-width: 575.98px) {
  .film-card--2, .film-card--3 { margin-top: -2.5rem; }
  .polaroid { margin-inline: auto; }
  .hero__ribbon .ribbon-chip { border-right: 0; }
  .display-hero { font-size: clamp(2.2rem, 11vw, 3.2rem); }
}

/* Reduced motion: keep it civilised */
@media (prefers-reduced-motion: reduce) {
  .marquee__track, .eq.is-on span, .dot-live { animation: none; }
  .tile, .duo__panel { transition: none; }
}
