/* Funky Monkeys Theme — layout */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- Header / Navbar ---- */
.site-header {
  position: relative;
  z-index: 100;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: center;
}

.site-header > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1.5rem;
  border-radius: 99px;
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid var(--color-gray);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.site-header .topbar-item,
.site-header a {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Logo spans both rows */
#block-funkymonkeys-theme-site-branding {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* ---- Top bar (contact info) — row 1, col 2 ---- */
#block-funkymonkeys-theme-topbar {
  grid-column: 2;
  grid-row: 1;
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
  justify-self: end;
}

#block-funkymonkeys-theme-topbar .topbar-inner {
  border-bottom: 1px solid rgba(199, 170, 91, 0.26);
  padding-bottom: 0.4rem;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar-item {
  font-size: var(--text-sm);
  color: var(--color-gray-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.topbar-item:hover {
  color: var(--color-gold);
}

.topbar-icon {
  color: var(--color-gold);
  margin-right: 0.25rem;
}

/* ---- Nav (menu) — row 2, col 2 ---- */

/* Logo */
#block-funkymonkeys-theme-site-branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.2rem 1rem 0.2rem 0;
}

#block-funkymonkeys-theme-site-branding img {
  height: 72px;
  width: auto;
}

#block-funkymonkeys-theme-site-branding a {
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  white-space: nowrap;
}

/* Hide site name text, keep logo */
#block-funkymonkeys-theme-site-branding a:last-child {
  display: none;
}

/* Nav */
#block-funkymonkeys-theme-main-menu {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: flex-end;
}

#block-funkymonkeys-theme-main-menu ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

#block-funkymonkeys-theme-main-menu a {
  display: block;
  padding: 0.4rem 0.55rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

#block-funkymonkeys-theme-main-menu ul > li:last-child > a {
  padding-right: 0;
}

#block-funkymonkeys-theme-main-menu a:hover {
  color: var(--color-gold);
}

/* No pill highlight on parent with dropdown */
#block-funkymonkeys-theme-main-menu li:has(> ul) > a {
  background: none;
}

#block-funkymonkeys-theme-main-menu li:has(> ul) > a:hover {
  background: none;
  color: var(--color-gold);
}

/* Dropdown arrow for parent items */
#block-funkymonkeys-theme-main-menu li:has(> ul) > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.4rem;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

/* Dropdown */
#block-funkymonkeys-theme-main-menu li {
  position: relative;
}

#block-funkymonkeys-theme-main-menu li:has(> ul) {
  padding-bottom: 0.5rem;
}

#block-funkymonkeys-theme-main-menu ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  min-width: 220px;
  background: rgba(13, 13, 13, 0.86);
  border-radius: 20px;
  border: 1px solid rgba(199, 170, 91, 0.26);
  overflow: hidden;
  z-index: 200;
}

#block-funkymonkeys-theme-main-menu li:hover > ul {
  display: block;
}

#block-funkymonkeys-theme-main-menu ul ul li {
  border-bottom: 1px solid rgba(199, 170, 91, 0.26);
}

#block-funkymonkeys-theme-main-menu ul ul li:last-child {
  border-bottom: none;
}

#block-funkymonkeys-theme-main-menu ul ul a {
  border-radius: 0;
  padding: 0.6rem 1rem;
  font-size: var(--text-sm);
  white-space: nowrap;
}

#block-funkymonkeys-theme-main-menu ul ul li:first-child a {
  border-radius: 20px 20px 0 0;
}

#block-funkymonkeys-theme-main-menu ul ul li:last-child a {
  border-radius: 0 0 20px 20px;
}

/* ---- Hero ---- */
/* Hero carousel — auto-play + inner cross-fade */
.hero-carousel {
  position: relative;
  /* Break out of .site-main max-width + padding (1200px max, 2rem padding) */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 3rem;
  height: clamp(500px, 75vh, 760px);
  overflow: hidden;
  background: var(--color-black);
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-carousel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-carousel__bg.is-active {
  opacity: 1;
}

.hero-carousel__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-carousel__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem 1.5rem;
  color: var(--color-white);
}

.hero-carousel__pretitle {
  display: inline-block;
  color: var(--color-gold);
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
}

.hero-carousel__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--color-white);
}

.hero-carousel__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 2rem;
  max-width: 700px;
  line-height: 1.5;
}

.hero-carousel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-gold), #b89640);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(199, 170, 91, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.hero-carousel__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(199, 170, 91, 0.45);
  filter: brightness(1.05);
  color: #1a1a1a;
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(199, 170, 91, 0.5);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s;
}

.hero-carousel__arrow:hover {
  background: rgba(199, 170, 91, 0.2);
  border-color: var(--color-gold);
}

.hero-carousel__arrow--prev { left: 1.5rem; }
.hero-carousel__arrow--next { right: 1.5rem; }

.hero-carousel__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.hero-carousel__dot {
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s, width 0.2s;
}

.hero-carousel__dot.is-active {
  background: var(--color-gold);
  width: 48px;
}

@media (max-width: 768px) {
  .hero-carousel {
    height: clamp(420px, 80vh, 600px);
  }
  .hero-carousel__arrow {
    width: 40px;
    height: 40px;
  }
  .hero-carousel__arrow--prev { left: 0.5rem; }
  .hero-carousel__arrow--next { right: 0.5rem; }
}

.hero {
  background: var(--color-black) url('../images/hero-home.webp') top center / 120% auto no-repeat;
  position: relative;
  margin-top: -88px;
  padding: 250px 2rem 120px;
  min-height: 100vh;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 43, 43, 0.44) 10%, var(--color-black) 85%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero-pretitle {
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.hero-title {
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-gray-light);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 99px;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: 2px 2px 10px 0px rgba(255, 255, 255, 0.5);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn-gold:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Hero features grid */
.hero-features {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hero-feature {
  border: 2px solid var(--color-gold-dark);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: left;
  position: relative;
}

.hero-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--color-gold);
  color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}

.hero-feature__value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.hero-feature__unit {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.hero-feature__label {
  color: var(--color-white);
  font-size: var(--text-base);
}

.hero-feature__sub {
  font-size: var(--text-xs);
  color: var(--color-gray-light);
  margin-top: 0.25rem;
}

/* ---- Page hero (sub-pages) ---- */
body[class*="page-"]:not(.page-front):not(.path-frontpage) .site-main {
  position: relative;
}

body[class*="page-"]:not(.page-front):not(.path-frontpage) #block-funkymonkeys-theme-page-title {
  position: relative;
  margin: -88px -2rem 2rem;
  padding: 220px 2rem 60px;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body[class*="page-"]:not(.page-front):not(.path-frontpage) #block-funkymonkeys-theme-page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 43, 43, 0.5) 10%, var(--color-black) 90%);
}

body[class*="page-"]:not(.page-front):not(.path-frontpage) #block-funkymonkeys-theme-page-title h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.875rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Front page: hide page-title block (carousel takes its place) + remove top padding */
body.path-frontpage #block-funkymonkeys-theme-page-title { display: none; }
body.path-frontpage .site-main { padding-top: 0; }

/* Front page: neutralize old .hero wrapper so carousel fills the slot */
body.path-frontpage .hero {
  background: none;
  margin-top: -128px;
  padding: 0 0 4rem;
  min-height: 0;
  text-align: left;
}

body.path-frontpage .hero::before { content: none; }
body.path-frontpage .hero-content { display: none; }

/* Front page: breathing room around hero-features + before room cards */
body.path-frontpage .hero-features {
  margin: 3rem auto 0;
  padding: 0 2rem;
}

body.path-frontpage .view-escape-rooms,
body.path-frontpage .content-area > .views-element-container:first-of-type,
body.path-frontpage #block-funkymonkeys-theme-content {
  margin-top: 4rem;
}

/* Per-page backgrounds */
body.page-birthday #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/birthday.webp'); }
body.page-rozhdeni-dni #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/birthday.webp'); }
body.page-team-building #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/team-building.webp'); }
body[class*="page-teambuilding-korporativni-sabitia"] #block-funkymonkeys-theme-page-title,
body[class*="page-en-teambuilding"] #block-funkymonkeys-theme-page-title { display: none; }

/* Teambuilding — override .event-category (was navy blue baseline) to match tb-info style */
body[class*="page-teambuilding-korporativni-sabitia"] .event-categories,
body[class*="page-en-teambuilding"] .event-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}
body[class*="page-teambuilding-korporativni-sabitia"] .event-category,
body[class*="page-en-teambuilding"] .event-category {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(199,170,91,0.28);
  border-radius: 12px;
  padding: 1.5rem;
}
body[class*="page-teambuilding-korporativni-sabitia"] .event-category h3,
body[class*="page-en-teambuilding"] .event-category h3 {
  color: #f4e4a1;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  padding-left: 0.7rem;
  border-left: 4px solid;
  border-image: linear-gradient(180deg, #f4e4a1 0%, #c7aa5b 50%, #8b6f2f 100%) 1;
}
body[class*="page-teambuilding-korporativni-sabitia"] .event-category p,
body[class*="page-en-teambuilding"] .event-category p {
  color: #d8d3c8;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
body[class*="page-teambuilding-korporativni-sabitia"] .event-category a,
body[class*="page-en-teambuilding"] .event-category a {
  color: var(--bd-gold, #c7aa5b);
  text-decoration: underline;
  text-decoration-color: rgba(199,170,91,0.4);
  text-underline-offset: 3px;
}
@media (max-width: 720px) {
  body[class*="page-teambuilding-korporativni-sabitia"] .event-categories,
  body[class*="page-en-teambuilding"] .event-categories { grid-template-columns: 1fr; }
}

/* Teambuilding hero — pull photo BEHIND the header (like frontpage carousel) */
body[class*="page-teambuilding-korporativni-sabitia"] .bd-hero,
body[class*="page-en-teambuilding"] .bd-hero {
  margin-top: -128px;
  padding-top: calc(clamp(8rem, 14vh, 11rem) + 128px);
}
/* Teambuilding hero — lighter vignette + richer colors than default (photo is monochrome-ish) */
body[class*="page-teambuilding-korporativni-sabitia"] .bd-hero__photo,
body[class*="page-en-teambuilding"] .bd-hero__photo {
  filter: saturate(1.25) contrast(1.15);
  background-position: center 55%;
}
body[class*="page-teambuilding-korporativni-sabitia"] .bd-hero__vignette,
body[class*="page-en-teambuilding"] .bd-hero__vignette {
  background:
    radial-gradient(ellipse 100% 80% at 30% 50%, transparent 0%, rgba(10,10,10,0.32) 55%, rgba(10,10,10,0.75) 92%),
    linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.45) 60%, var(--bd-ink) 100%);
}
body.page-faq #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/faq.webp'); }
body.page-contact #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/contact.webp'); }
body.page-careers #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/careers.webp'); }
body.page-corporate #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/corporate.webp'); }
body.page-korporativni-vuzmozhnosti #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/corporate.webp'); }
body.page-corporate-opportunities #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/corporate.webp'); }
body.page-faq #block-funkymonkeys-theme-page-title,
body.page-chesto-zadavani-vaprosi-za-eskeyp-stai #block-funkymonkeys-theme-page-title,
body.page-faqs #block-funkymonkeys-theme-page-title,
body[class*="rules-of-participation"] #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/faq.webp'); }
body.page-saglasie #block-funkymonkeys-theme-page-title,
body.page-consent #block-funkymonkeys-theme-page-title,
body[class*="page-----"] #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/faq.webp'); }
body.page-contact #block-funkymonkeys-theme-page-title,
body.page-contacts #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/contact.webp'); }
body.page-careers #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/careers.webp'); }
body.page-terms #block-funkymonkeys-theme-page-title,
body.page-terms-and-conditions-for-participation #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/escape-rooms.webp'); }
body.page-payment-policy #block-funkymonkeys-theme-page-title,
body.page-payment-and-refund-policy #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/escape-rooms.webp'); }

/* Image on event-category card (Birthday/Team Building recommended rooms) */
.event-category img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  display: block;
}

/* Home — "Suitable for" categories section */
#block-funkymonkeys-theme-home-suitable-for {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(199, 170, 91, 0.3);
}

/* Home — Latest posts section (views block 'blog-latest') */
#block-funkymonkeys-theme-home-latest-posts {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(199, 170, 91, 0.3);
}

#block-funkymonkeys-theme-home-latest-posts::before {
  content: "Последни публикации";
  display: block;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 2rem;
  font-size: var(--text-2xl);
  font-weight: 700;
}

html[lang="en"] #block-funkymonkeys-theme-home-latest-posts::before {
  content: "Latest posts";
}

#block-funkymonkeys-theme-home-latest-posts .views-element-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

#block-funkymonkeys-theme-home-latest-posts .views-row {
  display: flex;
}

#block-funkymonkeys-theme-home-latest-posts article.blog-post {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#block-funkymonkeys-theme-home-latest-posts article.blog-post h2 {
  font-size: var(--text-lg);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

#block-funkymonkeys-theme-home-latest-posts article.blog-post h2 a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Home FAQ snippet — give it breathing room */
#block-funkymonkeys-theme-home-faq {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(199, 170, 91, 0.3);
}

#block-funkymonkeys-theme-home-faq h2 {
  color: var(--color-gold);
  text-align: center;
  font-size: var(--text-2xl);
  margin: 0 0 2rem;
}

.home-suitable-for h2 {
  color: var(--color-gold);
  text-align: center;
  font-size: var(--text-2xl);
  margin-bottom: 2.5rem;
}

.home-suitable-for__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.home-suitable-for__item {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(199, 170, 91, 0.3);
  border-radius: 12px;
  color: var(--color-white);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, background-color 0.2s;
}

.home-suitable-for__item:hover {
  border-color: var(--color-gold);
  background: rgba(199, 170, 91, 0.06);
  transform: translateY(-2px);
}

.home-suitable-for__item svg {
  color: var(--color-gold);
}

.home-suitable-for__item span {
  font-weight: 600;
  font-size: var(--text-lg);
}

a.home-suitable-for__item span {
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 4px;
}
body.page-gallery #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/gallery.webp'); }
body.page-blog #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/blog.webp'); }
body.page-escape-rooms #block-funkymonkeys-theme-page-title { background-image: url('../images/page-hero/escape-rooms.webp'); }

/* Per-room hero backgrounds */
body[class*="page-escape-rooms-"] .er-page__header {
  position: relative;
  margin: -88px -2rem 2rem;
  padding: 220px 2rem 60px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  /* Same treatment as the birthday/teambuilding hero: let the photo stay
     vivid (saturate + contrast) instead of flattening it under a heavy scrim. */
  filter: saturate(1.08) contrast(1.04);
}

body[class*="page-escape-rooms-"] .er-page__header::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Vignette scrim — light at the top so the scene reads, deepening toward the
     bottom where the title sits (bd-hero style, not a flat overall dim). */
  background:
    radial-gradient(ellipse 120% 100% at 50% 32%, transparent 0%, rgba(10,10,10,0.28) 62%, rgba(10,10,10,0.6) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.12) 0%, rgba(10,10,10,0.32) 45%, rgba(10,10,10,0.72) 84%, var(--color-black) 100%);
}
body[class*="page-escape-rooms-"] .er-page__title,
body[class*="page-escape-rooms-"] .er-page__lead {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 14px rgba(0, 0, 0, 0.5);
}
/* Gold eyebrow needs a tighter, darker shadow to stay legible on bright scenes. */
body[class*="page-escape-rooms-"] .er-page__type {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.7);
}

body[class*="page-escape-rooms-"] .er-page__header > * {
  position: relative;
  z-index: 1;
}

body.page-escape-rooms-rebellion .er-page__header { background-image: url('../images/room-hero/rebellion.webp'); }
body.page-escape-rooms-tv-trap .er-page__header { background-image: url('../images/room-hero/tv-trap.webp'); }
body.page-escape-rooms-chateau .er-page__header { background-image: url('../images/room-hero/chateau.webp'); }
body.page-escape-rooms-aqualand .er-page__header { background-image: url('../images/room-hero/aqualand.webp'); }
body.page-escape-rooms-ghost-hunters .er-page__header { background-image: url('../images/room-hero/ghost-hunters.webp'); }
body.page-escape-rooms-tears-and-sorrow .er-page__header { background-image: url('../images/room-hero/tears-and-sorrow.webp'); }
body.page-escape-rooms-battle-minds .er-page__header { background-image: url('../images/room-hero/battle-minds.webp'); }
body.page-escape-rooms-cube-and-teleport .er-page__header { background-image: url('../images/room-hero/cube-and-teleport.webp'); }
body.page-escape-rooms-heist .er-page__header { background-image: url('../images/room-hero/the-heist.webp'); }

/* BG slug aliases for room hero backgrounds (Pathauto transliterated) */
body.page-escape-rooms-bunt .er-page__header             { background-image: url('../images/room-hero/rebellion.webp'); }
body.page-escape-rooms-shato .er-page__header            { background-image: url('../images/room-hero/chateau.webp'); }
body.page-escape-rooms-akvalend .er-page__header         { background-image: url('../images/room-hero/aqualand.webp'); }
body.page-escape-rooms-lovci-na-dukhove .er-page__header { background-image: url('../images/room-hero/ghost-hunters.webp'); }
body.page-escape-rooms-slzi-i-skrb .er-page__header      { background-image: url('../images/room-hero/tears-and-sorrow.webp'); }
body.page-escape-rooms-bitkata-na-umovete .er-page__header { background-image: url('../images/room-hero/battle-minds.webp'); }
body.page-escape-rooms-kubt-i-teleportt .er-page__header { background-image: url('../images/room-hero/cube-and-teleport.webp'); }
body.page-escape-rooms-obirt .er-page__header            { background-image: url('../images/room-hero/the-heist.webp'); }

/* Alias slugs whose actual Pathauto value never matched a canonical rule above
   — without these the hero renders blank. */
body.page-escape-rooms-ghost-busters .er-page__header                { background-image: url('../images/room-hero/ghost-hunters.webp'); }
body.page-escape-rooms-brain-battle .er-page__header                 { background-image: url('../images/room-hero/brain-battle.webp'); background-position: center 76%; }
body.page-escape-rooms-cube-x-teleportation-machine .er-page__header { background-image: url('../images/room-hero/cube-and-teleport.webp'); }
body.page-escape-rooms-artopolis .er-page__header                    { background-image: url('../images/room-hero/artopolis.webp?v=2'); }

/* Poster-style heroes (title baked at the top) — frame the lower scene
   instead of the dark middle band that a centred crop would show. */
body.page-escape-rooms-heist .er-page__header,
body.page-escape-rooms-obirt .er-page__header { background-position: center 92%; }
body.page-escape-rooms-cube-and-teleport .er-page__header,
body.page-escape-rooms-cube-x-teleportation-machine .er-page__header,
body.page-escape-rooms-kubt-i-teleportt .er-page__header { background-position: center 70%; }
/* Aqualand: frame the bottom (chest + seahorse) on desktop; the taller mobile
   header naturally reveals the octopus above. */
body.page-escape-rooms-aqualand .er-page__header,
body.page-escape-rooms-akvalend .er-page__header { background-position: center bottom; }
/* Chateau: baked "CHATEAU" title sits in the vertical middle — frame the
   staircase above it. Mobile band is proportionally taller, so zoom in to keep
   the baked title out of frame there too. */
body.page-escape-rooms-chateau .er-page__header,
body.page-escape-rooms-shato .er-page__header { background-position: center 24%; }
@media (max-width: 640px) {
  body.page-escape-rooms-chateau .er-page__header,
  body.page-escape-rooms-shato .er-page__header { background-size: auto 240%; background-position: center 20%; }
}

/* ---- Main content ---- */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

#block-funkymonkeys-theme-page-title h1 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 1.5rem;
}

#block-funkymonkeys-theme-breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  font-size: var(--text-xs);
  color: var(--color-gray-light);
  margin-bottom: 1rem;
}

#block-funkymonkeys-theme-breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  opacity: 0.5;
}

#block-funkymonkeys-theme-breadcrumbs a {
  color: var(--color-gray-light);
}

/* ---- Footer ---- */
.site-footer {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-gray);
  border-radius: 24px;
  font-size: var(--text-sm);
  color: var(--color-gray-light);
}

.footer-top {
  padding: 0 0 1rem;
}

.footer-top > div {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr 1fr;
  gap: 2rem;
}

.footer-top > div > nav:last-child {
  text-align: right;
}

.footer-top h2 {
  display: none;
}

.footer-top ul {
  list-style: none;
  padding: 0;
}

.footer-top ul li {
  margin-bottom: 0.4rem;
}

/* Footer About — pack short links (Careers, FAQ, Blog) on one line via flex-wrap.
   Long items fall to own line; short ones share a row. */
#block-funkymonkeys-theme-footer-about ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1rem;
}

#block-funkymonkeys-theme-footer-about ul li {
  margin-bottom: 0;
}

.footer-top a {
  color: var(--color-gray-light);
  text-decoration: none;
}

.footer-top a:hover {
  color: var(--color-gold);
}

/* Brand */
.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.footer-brand__logo {
  height: 64px;
  width: auto;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand__title {
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: 600;
  margin: 0;
}

.footer-brand__tagline {
  font-size: var(--text-xs);
  margin: 0;
}

.footer-brand__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.footer-brand__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  color: var(--color-gold);
  transition: all 0.2s;
}

.footer-brand__social svg {
  width: 14px;
  height: 14px;
}

.footer-brand__social a:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Contact */
.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.footer-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.btn-outline-sm {
  display: inline-block;
  padding: 0.3rem 1rem;
  border: 1px solid var(--color-gold);
  border-radius: 99px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  text-decoration: none;
}

.btn-outline-sm:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Footer middle (reviews + payments) — compact balanced row */
.footer-middle {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(199, 170, 91, 0.26);
  border-bottom: 1px solid rgba(199, 170, 91, 0.26);
}

.footer-middle > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-mid__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-gray-light);
}

.footer-mid__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.footer-mid__value {
  color: var(--color-gold);
  font-weight: 600;
}

.footer-mid__item img {
  max-height: 28px;
  width: auto;
}

.footer-mid__stars {
  color: #ffc94a;
  letter-spacing: .06em;
}
.footer-mid__sep { display: inline-block; width: 2.2rem; }

.footer-mid__reviews {
  display: inline-flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer-mid__review {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  text-decoration: none;
  color: var(--color-gold);
  font-weight: 600;
  transition: filter .15s ease;
}
.footer-mid__review:hover,
.footer-mid__review:focus-visible { filter: brightness(1.15); }
.footer-mid__brand { font-size: .92rem; letter-spacing: .03em; }
.footer-mid__review .footer-mid__stars { font-size: .82rem; line-height: 1; }

.footer-payments__icons {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.footer-payments__icons img {
  height: 22px;
  width: auto;
}

/* Footer keywords cloud */
.footer-keywords {
  padding: 0.75rem 0;
  font-size: var(--text-xs);
}

.footer-keywords h2 { display: none; }

.footer-keywords ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0;
  justify-content: center;
}

.footer-keywords a {
  color: var(--color-gray-light);
  text-decoration: none;
  opacity: 0.7;
}

.footer-keywords a:hover {
  color: var(--color-gold);
  opacity: 1;
}

/* Footer bottom (copyright) */
.footer-bottom {
  text-align: center;
  padding: 0.75rem 0 0;
  font-size: var(--text-xs);
  border-top: 1px solid rgba(199, 170, 91, 0.26);
}

.footer-bottom p { margin: 0; }

/* ---- Views row grid (escape rooms, blog) ---- */
.views-element-container > div {
  display: contents;
}

.views-element-container [class*="js-view-dom-id"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.views-row {
  display: contents;
}

/* ---- Room card ---- */
.room-card {
  background: var(--color-dark);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.room-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(199, 170, 91, 0.4);
}

.room-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.room-card__image > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-card__price-burst {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 100px;
  height: 100px;
  background: url('../images/price-burst.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}

.room-card__price-burst span {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
  padding: 0 0.5rem;
}

.room-card__price-burst strong {
  display: block;
  font-size: 1.3em;
  font-weight: 700;
}

.room-card__champ-badge { display: none; }

.room-card__difficulty-badge {
  position: absolute;
  top: -0.75rem;
  left: -0.5rem;
  width: 70px;
  height: auto;
  z-index: 3;
}

/* On single page, scope badge size to poster */
.er-page__poster .room-card__difficulty-badge {
  width: 80px;
}

.er-page__poster .room-card__price-burst {
  width: 110px;
  height: 110px;
}

.room-card__champ-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.room-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card__type {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.room-card__title {
  font-size: var(--text-2xl);
  margin-bottom: 0.25rem;
}

.room-card__title a {
  color: var(--color-white);
  text-decoration: none;
}

.room-card__title a:hover {
  color: var(--color-gold);
}

.room-card__locks {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  margin-right: 0.35rem;
}

.room-card__locks .lock {
  color: var(--color-gold);
  flex-shrink: 0;
}

.room-card__locks--trophy .lock {
  color: #c64b4b;
}

.room-card__cta--external {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.cta-external-icon {
  flex-shrink: 0;
  margin-top: -2px;
}

/* Room single page video — sidebar vertical short */
.er-page__video-short {
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin: 1.25rem 0;
  max-width: 100%;
}

.er-page__video-short iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .er-page__video-short {
    max-width: 320px;
    margin: 1.25rem auto;
  }
}

/* Blog post image */
.blog-post__image {
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
}

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

.blog-post__image a {
  display: block;
  height: 100%;
}

/* ============================================================
   BLOG SINGLE ARTICLE — typography + spacing
   ============================================================ */
/* On blog single page: kill default site-main padding + page-title block so hero can go edge-to-edge */
body.page-blog-single #block-funkymonkeys-theme-page-title { display: none; }
body.page-blog-single .site-main { padding-top: 0; }

.blog-post--full {
  width: 100%;
  margin: 0;
  padding: 0;
}
.blog-post--full .blog-post__hero {
  position: relative;
  margin: -128px calc(50% - 50vw) 0;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 30%;
  padding: 7rem 1.25rem 3rem;
  overflow: hidden;
}
.blog-post--full .blog-post__hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(13,13,13,.2) 40%, rgba(13,13,13,.85) 85%, var(--color-black, #0d0d0d) 100%);
  pointer-events: none;
}
.blog-post--full .blog-post__hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.blog-post--full .blog-post__hero .blog-post__date {
  color: var(--color-gold);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .9rem;
  opacity: .95;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.blog-post--full .blog-post__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  letter-spacing: -.005em;
  text-shadow: 0 4px 24px rgba(0,0,0,.6), 0 2px 6px rgba(0,0,0,.4);
}

/* Fallback header (no image) */
.blog-post--full .blog-post__header {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.25rem 1.5rem;
  text-align: center;
}
.blog-post--full .blog-post__header .blog-post__title {
  color: var(--color-gold);
  text-shadow: none;
}
.blog-post--full .blog-post__header .blog-post__date {
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  opacity: .85;
}

.blog-post--full .blog-post__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.blog-post--full .blog-post__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text, #f5f0e6);
}
.blog-post--full .blog-post__body > div > p,
.blog-post--full .blog-post__body > p {
  margin: 0 0 1.3rem;
}
.blog-post--full .blog-post__body h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-family: var(--font-heading);
  color: var(--color-gold);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,165,92,.18);
  letter-spacing: -.005em;
  line-height: 1.25;
}
.blog-post--full .blog-post__body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.blog-post--full .blog-post__body h3 {
  font-size: 1.25rem;
  color: var(--color-gold);
  margin: 1.75rem 0 .75rem;
  font-weight: 600;
}
.blog-post--full .blog-post__body h4 {
  font-size: 1.1rem;
  margin: 1.25rem 0 .5rem;
}
.blog-post--full .blog-post__body ul,
.blog-post--full .blog-post__body ol {
  margin: 0 0 1.3rem 0;
  padding-left: 1.5rem;
}
.blog-post--full .blog-post__body li { margin-bottom: .45rem; }
.blog-post--full .blog-post__body a {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,165,92,.35);
  transition: border-color .18s ease;
}
.blog-post--full .blog-post__body a:hover { border-bottom-color: var(--color-gold); }
.blog-post--full .blog-post__body blockquote {
  border-left: 3px solid var(--color-gold);
  padding: .5rem 0 .5rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: rgba(245,240,230,.85);
  background: rgba(201,165,92,.04);
}
.blog-post--full .blog-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
}
.blog-post--full .blog-post__body strong { color: #fff; font-weight: 700; }
.blog-post--full .blog-post__body em { color: rgba(245,240,230,.95); }

/* Blog listing — improve card spacing */
.view-blog .views-row { margin-bottom: 2.5rem; }
.blog-post--card { display: flex; flex-direction: column; gap: .5rem; }
.blog-post--card h2 {
  font-size: 1.4rem;
  margin: .25rem 0 .25rem;
  line-height: 1.3;
}
.blog-post--card h2 a {
  color: var(--color-text, #f5f0e6);
  text-decoration: none;
}
.blog-post--card h2 a:hover { color: var(--color-gold); }
.blog-post--card .blog-post__date {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: .75;
}
.blog-post--card .blog-post__body {
  color: rgba(245,240,230,.78);
  font-size: .95rem;
  line-height: 1.55;
}
.blog-post--card .blog-post__body p,
.blog-post--card .blog-post__body div { margin: 0; }
.blog-post--card .blog-post__image:not(:has(img[src=""])) {
  margin-bottom: .75rem;
}
@media (max-width: 640px) {
  .blog-post--full .blog-post__hero { min-height: 50vh; padding: 5rem 1rem 2rem; margin-top: -100px; }
  .blog-post--full .blog-post__container { padding: 1.75rem .9rem 2.5rem; }
  .blog-post--full .blog-post__body { font-size: 1rem; line-height: 1.7; }
}

.room-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--color-gray-light);
  margin-bottom: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.room-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.room-card__meta-icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

.room-card__desc {
  font-size: var(--text-base);
  color: var(--color-gray-light);
  line-height: var(--leading-normal);
  flex: 1;
  margin-bottom: 1rem;
}

.room-card__cta {
  display: block;
  text-align: center;
  font-size: var(--text-base);
  padding: 0.6rem;
  box-shadow: none;
}

/* ---- Escape Room single page ---- */
.er-page__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.er-page__type {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.er-page__title {
  font-size: var(--text-5xl);
  margin-bottom: 1rem;
}

.er-page__lead {
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--text-lg);
  color: var(--color-gray-light);
}

.er-page__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.er-page__main {
  min-width: 0;
}

.er-page__section {
  margin-bottom: 2rem;
}

.er-page__section--with-badge {
  position: relative;
}

.er-page__decor-badge {
  float: right;
  width: 100px;
  height: auto;
  margin: 0 0 1rem 1.5rem;
}

.er-page__section h2 {
  font-size: var(--text-2xl);
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(199, 170, 91, 0.26);
}

.er-page__section ul {
  list-style: none;
  padding: 0;
}

.er-page__section li {
  padding: 0.3rem 0;
}

/* Icon-list variant: gold SVG before each item, no separator lines */
.er-page__section--icons ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.er-page__section--icons li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border-bottom: none;
}

.er-page__section--icons .li-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.er-page__section--icons .li-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.er-page__section--icons .li-text {
  color: var(--color-white);
}

.er-page__note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(199, 170, 91, 0.1);
  border-left: 3px solid var(--color-gold);
  font-size: var(--text-sm);
  color: var(--color-gray-light);
}

.er-page__alert {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(199, 170, 91, 0.08);
  border: 1px solid rgba(199, 170, 91, 0.3);
  border-radius: 8px;
  align-items: flex-start;
}

.er-page__alert--safety {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.4);
}

.er-page__alert--safety .er-page__alert-icon {
  color: #22c55e;
}

.er-page__alert--warning {
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(234, 179, 8, 0.4);
}

.er-page__alert--warning .er-page__alert-icon {
  color: #eab308;
}

.er-page__alert-icon {
  font-size: var(--text-2xl);
  line-height: 1;
  color: var(--color-gold);
  flex-shrink: 0;
}

.er-page__alert-body strong {
  display: block;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.er-page__alert-body p {
  margin: 0.25rem 0;
  font-size: var(--text-sm);
  color: var(--color-gray-light);
}

.er-page__er-champ {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  text-align: center;
  background: rgba(199, 170, 91, 0.1);
  border-radius: 8px;
  color: var(--color-gold);
  font-weight: 600;
}

.er-page__booking {
  margin-top: 2rem;
}

.lockme-widget {
  width: 100%;
  display: block;
}

/* Sidebar */
.er-page__sidebar {
  position: sticky;
  top: 1rem;
  background: var(--color-dark);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 1rem;
}

.er-page__poster {
  position: relative;
  border-radius: 8px;
  overflow: visible;
  margin-bottom: 1rem;
}

.er-page__poster > img:not(.room-card__difficulty-badge) {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.er-page__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--color-black);
  border-radius: 8px;
}

.er-page__meta-item {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.er-page__meta-label {
  font-size: var(--text-xs);
  color: var(--color-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.er-page__meta-value {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gold);
}

.er-page__cta {
  display: block;
  text-align: center;
  width: 100%;
  font-size: var(--text-lg);
  padding: 0.75rem;
}

.er-page__cta--secondary {
  margin-top: 0.5rem;
  font-size: var(--text-base);
  padding: 0.6rem;
  box-shadow: none;
}

/* ---- Static pages (Contact, FAQ, Birthday, Team Building, etc.) ---- */
.page-lead {
  font-size: var(--text-lg);
  color: var(--color-gray-light);
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: var(--color-dark);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.contact-icon {
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.contact-info-card h3 {
  font-size: var(--text-base);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: var(--color-white);
}

.contact-info-card a:hover {
  color: var(--color-gold);
}

.contact-form-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-embed {
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: var(--color-dark);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
}

.contact-form-embed h2,
.contact-form-embed label {
  color: var(--color-white);
}

.contact-form-embed input[type="text"],
.contact-form-embed input[type="email"],
.contact-form-embed textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  margin-bottom: 1rem;
}

.contact-form-embed input:focus,
.contact-form-embed textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.contact-form-embed textarea {
  min-height: 120px;
}

.contact-form-embed input[type="submit"] {
  background: var(--color-gold);
  color: var(--color-black);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  font-size: var(--text-base);
}

.contact-form-embed input[type="submit"]:hover {
  background: var(--color-white);
}

.contact-form-embed .form-item {
  text-align: left;
  margin-bottom: 1rem;
}

.contact-form-embed details,
.contact-form-embed .field--name-field-message {
  margin-top: 1rem;
}

/* Cookie consent banner — pin to bottom (was floating mid-page) */
#sliding-popup {
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000;
}

#sliding-popup,
.eu-cookie-compliance-default-button,
#sliding-popup .eu-cookie-compliance-banner {
  background: rgba(13, 13, 13, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-gold);
}

#sliding-popup .popup-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  color: var(--color-white);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

#sliding-popup .eu-cookie-compliance-message {
  flex: 1;
  min-width: 280px;
}

#sliding-popup h2 {
  color: var(--color-gold);
  font-size: var(--text-lg);
  margin-bottom: 0.25rem;
}

#sliding-popup p {
  color: var(--color-gray-light);
  font-size: var(--text-sm);
  margin: 0;
}

#sliding-popup .eu-cookie-compliance-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#sliding-popup button.agree-button.eu-cookie-compliance-default-button {
  background: var(--color-gold) !important;
  color: var(--color-black) !important;
  border: none !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 99px !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  font-size: var(--text-base) !important;
  cursor: pointer;
  transition: background 0.2s;
}

#sliding-popup button.agree-button.eu-cookie-compliance-default-button:hover {
  background: var(--color-white) !important;
}

#sliding-popup .find-more-button {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  text-decoration: none;
  cursor: pointer;
}

#sliding-popup .find-more-button:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.faq-list details {
  background: var(--color-dark);
  border: 1px solid var(--color-gray);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}

.faq-list details[open] {
  border-color: var(--color-gold);
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::after {
  content: '+';
  color: var(--color-gold);
  font-size: var(--text-2xl);
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details > div {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-gray);
  color: var(--color-gray-light);
}

.success-rate {
  width: 100%;
  max-width: 600px;
  margin: 1rem auto 0;
  border-collapse: collapse;
}

.success-rate th,
.success-rate td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--color-gray);
  text-align: left;
}

.success-rate th {
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}

.success-rate td:last-child {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-gold);
}

/* Event page (Birthday, Team building) */
.event-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

/* ═══ Escape Room Challenge — featured tournament (Teambuilding) ═══ */
.er-challenge {
  --erc-gold: #c7aa5b;
  --erc-gold-warm: #f4e4a1;
  --erc-ink: #0a0a0a;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  margin: 2.75rem 0 3rem;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1a1a 0%, #0a0a0a 60%, #16110a 100%);
  border: 1px solid rgba(199, 170, 91, 0.35);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.85), 0 0 40px -12px rgba(199, 170, 91, 0.12);
  position: relative;
  isolation: isolate;
}
.er-challenge::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(199, 170, 91, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(199, 170, 91, 0.05), transparent 60%);
  z-index: 0;
}
.er-challenge__poster {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(199, 170, 91, 0.15);
  aspect-ratio: 3 / 2;
}
.er-challenge__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  border-radius: 0;
  margin-bottom: 0;
}
.er-challenge__poster:hover img { transform: scale(1.04); }
.er-challenge__body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem 2.25rem;
  position: relative;
  z-index: 1;
  justify-content: center;
}
.er-challenge__eyebrow {
  display: inline-block;
  color: var(--erc-gold);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(199, 170, 91, 0.35);
  align-self: flex-start;
}
.er-challenge__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, var(--erc-gold-warm) 0%, var(--erc-gold) 55%, #8b6f2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.er-challenge__lead {
  color: #e8e6e0;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}
.er-challenge__lead strong { color: var(--erc-gold-warm); font-weight: 600; }
.er-challenge__cta {
  align-self: flex-start;
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #8b6f2f 0%, var(--erc-gold) 50%, var(--erc-gold-warm) 100%);
  color: var(--erc-ink);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 235, 180, 0.5);
  box-shadow: 0 6px 16px -6px rgba(199, 170, 91, 0.55), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.er-challenge__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -6px rgba(199, 170, 91, 0.7), inset 0 1px 0 rgba(255,255,255,0.5);
}
@media (max-width: 820px) {
  .er-challenge { grid-template-columns: 1fr; }
  .er-challenge__poster { border-right: none; border-bottom: 1px solid rgba(199, 170, 91, 0.2); aspect-ratio: 16 / 10; }
  .er-challenge__body { padding: 1.5rem 1.25rem; }
}

.event-category {
  background: var(--color-dark);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 1.25rem;
}

.event-category h3 {
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

/* Static pages */
.static-page h2,
.event-page h2,
.faq-page h2,
.contact-page h2 {
  font-size: var(--text-2xl);
  color: var(--color-gold);
  margin: 2rem 0 1rem;
}

.static-page h3,
.event-page h3 {
  font-size: var(--text-xl);
  margin: 1.5rem 0 0.5rem;
}

.static-page ul,
.event-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page ol,
.legal-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--color-gray);
  transition: transform 0.2s, border-color 0.2s;
}

.gallery-item:hover {
  border-color: var(--color-gold);
  transform: scale(1.02);
}

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

/* Blog list — already has grid via .views-element-container */

#block-funkymonkeys-theme-blog-view article {
  background: var(--color-dark);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

#block-funkymonkeys-theme-blog-view article:hover {
  border-color: var(--color-gold);
}

#block-funkymonkeys-theme-blog-view h2 {
  font-size: var(--text-xl);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

#block-funkymonkeys-theme-blog-view h2 a {
  color: var(--color-white);
  text-decoration: none;
}

#block-funkymonkeys-theme-blog-view h2 a:hover {
  color: var(--color-gold);
}

#block-funkymonkeys-theme-blog-view article > div > div:not(:first-child) {
  font-size: var(--text-sm);
  color: var(--color-gray-light);
  line-height: 1.6;
}

#block-funkymonkeys-theme-blog-view footer {
  margin-top: 0.75rem;
  font-size: var(--text-xs);
  color: var(--color-gray-light);
  opacity: 0.7;
}

#block-funkymonkeys-theme-blog-view footer a {
  color: inherit;
  text-decoration: none;
}

/* ---- Language switcher (lives inside main menu after JS moves it) ---- */
#block-funkymonkeys-theme-language-switcher { display: none; }

li.menu-item--language.is-active { display: none; }

li.menu-item--language > a.language-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
}

li.menu-item--language > a.language-link::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

li.menu-item--language > a.language-link[hreflang="bg"]::before {
  background-image: url('../images/flag-bg-v2.png');
}
li.menu-item--language > a.language-link[hreflang="en"]::before {
  background-image: url('../images/flag-en-v2.png');
}

li.menu-item--language > a.language-link:hover { color: var(--color-gold); }

/* ============================================================
   Hamburger button — base (hidden on desktop)
   ============================================================ */
.nav-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 300;
  width: 38px;
  height: 38px;
  padding: 10px 8px;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ============================================================
   TABLET — <= 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .site-header { padding: 0.5rem 1rem; }

  /* Drop backdrop-filter — it creates a containing block for position:fixed,
     trapping the mobile menu overlay inside the pill. Pill stays visible via
     background + border.
     Layout: single row, 3 visual columns — logo | address | (hamburger).
     Hamburger stays absolute on .site-header; pill has padding-right to
     reserve space so the address doesn't slide under it. */
  .site-header > div {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    align-items: center;
    padding: 0.4rem 3.25rem 0.4rem 0.75rem;
    border-radius: 18px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(13, 13, 13, 0.55);
  }

  #block-funkymonkeys-theme-site-branding {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding: 0;
  }
  #block-funkymonkeys-theme-site-branding img { height: 48px; }

  /* Language switcher: row 2, full width, centered (mobile) */
  #block-funkymonkeys-theme-language-switcher {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    padding: 0.3rem 0 0;
    margin: 0;
  }
  #block-funkymonkeys-theme-language-switcher .language-link {
    padding: 0.1rem 0.5rem;
    font-size: 0.7rem;
  }

  /* Address — sits in column 2, centered */
  #block-funkymonkeys-theme-topbar {
    grid-column: 2;
    grid-row: 1;
    padding-bottom: 0;
    margin-bottom: 0;
    justify-self: stretch;
    padding-right: 0;
  }
  #block-funkymonkeys-theme-topbar .topbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: none;
    gap: 1.25rem;
    padding-bottom: 0;
  }

  /* Hide desktop inline menu — gets replaced by mobile overlay below */
  #block-funkymonkeys-theme-main-menu {
    display: none;
  }

  /* Mobile menu overlay when toggled */
  body.nav-open #block-funkymonkeys-theme-main-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    padding: 4rem 1.5rem 2rem;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--color-gold);
    z-index: 250;
    overflow-y: auto;
    grid-column: unset;
    grid-row: unset;
    justify-content: flex-start;
  }

  body.nav-open #block-funkymonkeys-theme-main-menu ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  body.nav-open #block-funkymonkeys-theme-main-menu li {
    padding-bottom: 0;
    border-bottom: 1px solid rgba(199, 170, 91, 0.18);
  }

  body.nav-open #block-funkymonkeys-theme-main-menu a {
    padding: 0.85rem 0.5rem;
    border-radius: 0;
    font-size: var(--text-lg);
  }

  /* Dropdown — closed by default, opens on .mobile-open (added by JS) */
  body.nav-open #block-funkymonkeys-theme-main-menu li:has(> ul) > a::after {
    float: right;
    margin-top: 0.6em;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s;
  }

  body.nav-open #block-funkymonkeys-theme-main-menu li.mobile-open > a::after {
    transform: rotate(180deg);
  }

  body.nav-open #block-funkymonkeys-theme-main-menu ul ul {
    position: static;
    transform: none;
    display: none;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 0;
    min-width: 0;
    margin: 0;
  }

  body.nav-open #block-funkymonkeys-theme-main-menu li.mobile-open > ul {
    display: block;
  }

  body.nav-open #block-funkymonkeys-theme-main-menu ul ul a {
    padding: 0.6rem 1rem 0.6rem 1.5rem;
    font-size: var(--text-base);
    border-radius: 0;
  }

  body.nav-open #block-funkymonkeys-theme-main-menu ul ul li:first-child a,
  body.nav-open #block-funkymonkeys-theme-main-menu ul ul li:last-child a {
    border-radius: 0;
  }

  /* Scroll lock + backdrop overlay when menu open.
     No backdrop-filter here — site-header has z-index:100 which creates a
     stacking context, so the menu inside it can't escape above this overlay's
     filter (it'd blur the menu too). Plain dim background is enough. */
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { z-index: 260; }
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 240;
  }

  /* Hero — adjust padding/sizes */
  .hero {
    padding: 180px 1.25rem 80px;
    min-height: 70vh;
    background-size: cover;
  }
  .hero-title { font-size: var(--text-4xl); }
  .hero-subtitle { font-size: var(--text-lg); }
  .hero-features { grid-template-columns: repeat(2, 1fr); }

  /* Page hero (subpages, room hero) */
  body[class*="page-"]:not(.page-front) #block-funkymonkeys-theme-page-title,
  body[class*="page-escape-rooms-"] .er-page__header {
    margin: -68px -1rem 1.5rem;
    padding: 160px 1rem 40px;
  }
  body[class*="page-"]:not(.page-front) #block-funkymonkeys-theme-page-title h1 { font-size: var(--text-4xl); }

  /* Views grids — 2 cols */
  .views-element-container [class*="js-view-dom-id"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* ER single page — sidebar under content */
  .er-page__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .er-page__sidebar {
    position: static;
    order: -1;
  }
  .er-page__poster {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .er-page__title { font-size: var(--text-4xl); }

  /* Site main padding */
  .site-main { padding: 1.5rem 1rem; }

  /* Footer — 2 cols */
  .footer-top > div {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-top > div > nav:last-child { text-align: left; }
  .site-footer { margin: 2rem 1rem; padding: 1.25rem; }
}

/* ============================================================
   MOBILE — <= 768px
   ============================================================ */
@media (max-width: 768px) {
  .site-header { padding: 0.5rem 0.75rem; }
  .site-header > div {
    padding: 0.4rem 2.85rem 0.4rem 0.6rem;
    gap: 0.5rem;
  }
  #block-funkymonkeys-theme-site-branding img { height: 44px; }
  #block-funkymonkeys-theme-site-branding a { font-size: var(--text-xs); }

  /* Topbar — keep only the clickable address (Google Maps).
     Phone & email live in the footer. */
  #block-funkymonkeys-theme-topbar .topbar-item:not([href*="maps"]) {
    display: none;
  }
  #block-funkymonkeys-theme-topbar .topbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
  #block-funkymonkeys-theme-topbar .topbar-item[href*="maps"] {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0;
    font-size: var(--text-xs);
    white-space: normal;
    line-height: 1.25;
    color: var(--color-gray-light);
    text-decoration: none;
  }
  #block-funkymonkeys-theme-topbar .topbar-item[href*="maps"]:hover {
    color: var(--color-gold);
  }
  #block-funkymonkeys-theme-topbar .topbar-icon {
    margin-right: 0;
    color: var(--color-gold);
    line-height: 1.25;
  }

  .nav-toggle {
    right: 1.25rem;
    width: 36px;
    height: 36px;
    padding: 9px 7px;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Hero */
  .hero {
    padding: 140px 1rem 60px;
    min-height: 60vh;
    background-size: cover;
  }
  .hero-pretitle { font-size: var(--text-sm); }
  .hero-title { font-size: var(--text-3xl); }
  .hero-subtitle { font-size: var(--text-base); margin-bottom: 1.5rem; }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .btn { font-size: var(--text-lg); padding: 0.65rem 1.5rem; }
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 2rem;
  }
  .hero-feature { padding: 0.75rem 0.5rem; }
  .hero-feature__value { font-size: var(--text-xl); }
  .hero-feature__label { font-size: var(--text-sm); }

  /* Page hero */
  body[class*="page-"]:not(.page-front) #block-funkymonkeys-theme-page-title,
  body[class*="page-escape-rooms-"] .er-page__header {
    margin: -60px -0.75rem 1.25rem;
    padding: 130px 1rem 35px;
  }
  body[class*="page-"]:not(.page-front) #block-funkymonkeys-theme-page-title h1 { font-size: var(--text-3xl); }
  .er-page__title { font-size: var(--text-3xl); }
  .er-page__lead { font-size: var(--text-base); }

  /* Views — 1 col */
  .views-element-container [class*="js-view-dom-id"] {
    grid-template-columns: 1fr;
  }

  /* Site main */
  .site-main { padding: 1rem 0.75rem; }

  /* Decor badge — clear float on small */
  .er-page__decor-badge {
    float: none;
    display: block;
    margin: 0 auto 1rem;
    width: 80px;
  }

  /* ER alerts vertical */
  .er-page__alert {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
  }

  /* Footer — 1 col, centered */
  .footer-top > div {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }
  .footer-top > div > nav:last-child { text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-brand__social { justify-content: center; }
  .footer-contact__item { justify-content: center; text-align: left; }

  .footer-middle > div {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer-payments__icons { flex-wrap: wrap; justify-content: center; }

  /* Card poster ratio tweak — keep readable */
  .room-card__price-burst {
    width: 80px;
    height: 80px;
    top: -0.5rem;
    right: -0.5rem;
  }
  .room-card__price-burst span { font-size: 10px; }
  .room-card__difficulty-badge {
    width: 56px;
    top: -0.5rem;
    left: -0.4rem;
  }

  /* Contact form */
  .contact-form-embed { padding: 1rem; }

  /* FAQ */
  .faq-list summary { font-size: var(--text-sm); }

  /* Cookie banner */
  #sliding-popup .popup-content {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    align-items: stretch;
  }
  #sliding-popup .eu-cookie-compliance-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ============================================================
   SMALL MOBILE — <= 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: var(--text-2xl); }
  .hero-features { grid-template-columns: 1fr; }
  body[class*="page-"]:not(.page-front) #block-funkymonkeys-theme-page-title h1 { font-size: var(--text-2xl); }
  .er-page__title { font-size: var(--text-2xl); }
  .er-page__section h2 { font-size: var(--text-lg); }
  .room-card__title { font-size: var(--text-xl); }
  .btn { font-size: var(--text-base); }
  #block-funkymonkeys-theme-site-branding img { height: 42px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Webform styling — Funky Monkeys flavor */
form[id^="webform-submission-"] {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(199, 170, 91, 0.07), transparent 70%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(199, 170, 91, 0.4);
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  max-width: 720px;
  margin: 2.5rem auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

form[id^="webform-submission-"] .form-item {
  margin-bottom: 1.75rem;
}

form[id^="webform-submission-"] label {
  display: block;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

form[id^="webform-submission-"] input[type="text"],
form[id^="webform-submission-"] input[type="email"],
form[id^="webform-submission-"] input[type="tel"],
form[id^="webform-submission-"] input[type="date"],
form[id^="webform-submission-"] input[type="time"],
form[id^="webform-submission-"] input[type="datetime-local"],
form[id^="webform-submission-"] select,
form[id^="webform-submission-"] textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(199, 170, 91, 0.25);
  border-radius: 10px;
  color: var(--color-white);
  font-family: inherit;
  font-size: var(--text-base);
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

form[id^="webform-submission-"] input::placeholder,
form[id^="webform-submission-"] textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

form[id^="webform-submission-"] input:hover,
form[id^="webform-submission-"] select:hover,
form[id^="webform-submission-"] textarea:hover {
  border-color: rgba(199, 170, 91, 0.5);
  background: rgba(0, 0, 0, 0.7);
}

form[id^="webform-submission-"] input:focus,
form[id^="webform-submission-"] select:focus,
form[id^="webform-submission-"] textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 0 3px rgba(199, 170, 91, 0.18);
}

/* Select with custom gold chevron, decent right padding */
form[id^="webform-submission-"] select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c7aa5b'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 18px;
  padding-right: 3rem;
}

form[id^="webform-submission-"] textarea {
  min-height: 140px;
  resize: vertical;
}

/* Fieldset reset */
form[id^="webform-submission-"] fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 1.75rem;
  min-width: 0;
}

form[id^="webform-submission-"] fieldset legend,
form[id^="webform-submission-"] fieldset > legend > span {
  display: block;
  color: var(--color-gold);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 0.85rem;
  width: 100%;
}

/* Radios / checkboxes — base */
form[id^="webform-submission-"] .form-type-radio,
form[id^="webform-submission-"] .form-type-checkbox,
form[id^="webform-submission-"] .js-form-type-radio,
form[id^="webform-submission-"] .js-form-type-checkbox {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.6rem;
}

form[id^="webform-submission-"] .form-type-radio label,
form[id^="webform-submission-"] .form-type-checkbox label,
form[id^="webform-submission-"] .js-form-type-radio label,
form[id^="webform-submission-"] .js-form-type-checkbox label {
  display: inline;
  margin: 0;
  color: var(--color-white);
  font-weight: 400;
  font-size: var(--text-base);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  cursor: pointer;
}

form[id^="webform-submission-"] input[type="radio"],
form[id^="webform-submission-"] input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-gold);
}

/* Side-by-side radios — pill style */
form[id^="webform-submission-"] .webform-options-display-side-by-side {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

form[id^="webform-submission-"] .webform-options-display-side-by-side .form-item {
  margin: 0;
  padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  border: 1px solid rgba(199, 170, 91, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s, background-color 0.2s;
}

form[id^="webform-submission-"] .webform-options-display-side-by-side .form-item:hover {
  border-color: rgba(199, 170, 91, 0.6);
  background: rgba(199, 170, 91, 0.08);
}

form[id^="webform-submission-"] .webform-options-display-side-by-side .form-item:has(input:checked) {
  border-color: var(--color-gold);
  background: rgba(199, 170, 91, 0.18);
}

/* Datetime — date + time inline */
form[id^="webform-submission-"] .container-inline {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

form[id^="webform-submission-"] .container-inline > * {
  flex: 1;
  min-width: 150px;
}

form[id^="webform-submission-"] .container-inline input {
  margin-bottom: 0;
}

/* GDPR checkboxes as cards */
form[id^="webform-submission-"] .js-form-type-checkbox:has(input[name^="gdpr"]) {
  align-items: flex-start;
  padding: 0.95rem 1.1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(199, 170, 91, 0.2);
  border-radius: 10px;
  margin-bottom: 0.85rem;
}

form[id^="webform-submission-"] .js-form-type-checkbox:has(input[name^="gdpr"]) input {
  margin-top: 2px;
}

form[id^="webform-submission-"] .js-form-type-checkbox:has(input[name^="gdpr"]) label {
  font-size: var(--text-sm);
  color: var(--color-gray-light);
}

/* Submit — gradient gold with lift on hover */
form[id^="webform-submission-"] .form-actions {
  margin-top: 2rem;
}

form[id^="webform-submission-"] input[type="submit"],
form[id^="webform-submission-"] .button--primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold), #b89640);
  color: #1a1a1a;
  border: 0;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 14px rgba(199, 170, 91, 0.28);
}

form[id^="webform-submission-"] input[type="submit"]:hover,
form[id^="webform-submission-"] .button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(199, 170, 91, 0.4);
  filter: brightness(1.05);
}

form[id^="webform-submission-"] input[type="submit"]:active,
form[id^="webform-submission-"] .button--primary:active {
  transform: translateY(0);
}

/* Description / help text */
form[id^="webform-submission-"] .description,
form[id^="webform-submission-"] .form-item__description {
  font-size: var(--text-xs);
  color: var(--color-gray-light);
  margin-top: 0.4rem;
}

/* Required asterisk gold */
form[id^="webform-submission-"] .form-required::after {
  content: '*';
  color: var(--color-gold);
  margin-left: 0.25rem;
}

/* Confirmation message */
.webform-confirmation,
.webform-confirmation__message {
  max-width: 720px;
  margin: 2.5rem auto;
  padding: 2rem;
  background: rgba(199, 170, 91, 0.08);
  border: 1px solid var(--color-gold);
  border-radius: 16px;
  color: var(--color-white);
  text-align: center;
}

/* Errors */
form[id^="webform-submission-"] .form-item--error-message,
form[id^="webform-submission-"] .error {
  color: #ff8a8a;
  font-size: var(--text-xs);
  margin-top: 0.4rem;
}

form[id^="webform-submission-"] input.error,
form[id^="webform-submission-"] textarea.error,
form[id^="webform-submission-"] select.error {
  border-color: #c64b4b;
}

/* ═══════════════════════════════════════════════════════════════════
   BIRTHDAY OFFER — "Velvet Theater" aesthetic
   Dark stage. Gold spotlight. Editorial restraint.
   ═══════════════════════════════════════════════════════════════════ */

.bd-offer {
  --bd-gold: var(--color-gold);
  --bd-gold-soft: rgba(199, 170, 91, 0.35);
  --bd-gold-faint: rgba(199, 170, 91, 0.12);
  --bd-ink: #0a0a0a;
  --bd-paper: rgba(255, 255, 255, 0.04);
  --bd-paper-warm: rgba(199, 170, 91, 0.05);
  --bd-line: rgba(255, 255, 255, 0.08);
  --bd-text: #e8e6e0;
  --bd-text-soft: #b8b4ac;

  color: var(--bd-text);
  font-family: var(--font-body);
  letter-spacing: 0.005em;
  /* Break out of .site-main padding */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  background: var(--bd-ink);
}

.bd-offer * { box-sizing: border-box; }
.bd-offer a { color: inherit; }
:where(.bd-offer h1, .bd-offer h2, .bd-offer h3) { margin: 0; }
:where(.bd-offer p) { margin: 0; }
:where(.bd-offer ul, .bd-offer ol) { margin: 0; padding: 0; list-style: none; }
:where(.bd-offer dl, .bd-offer dt, .bd-offer dd) { margin: 0; }

/* ───────────────────────────────────────────────────────────
   HERO
─────────────────────────────────────────────────────────── */
.bd-hero {
  position: relative;
  min-height: clamp(620px, 90vh, 820px);
  padding: clamp(8rem, 14vh, 11rem) clamp(1.5rem, 6vw, 6rem) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.bd-hero__photo {
  position: absolute;
  inset: 0;
  background-position: center 75%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  filter: saturate(0.85) contrast(1.05);
}

.bd-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 30% 50%, transparent 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.95) 90%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 60%, var(--bd-ink) 100%);
}

.bd-hero__content {
  position: relative;
  max-width: 760px;
  animation: bdFadeUp 0.9s ease-out both;
  animation-delay: 0.05s;
}

.bd-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--bd-gold);
  margin-bottom: 2rem;
  font-weight: 500;
}

.bd-hero__rule {
  flex: 0 0 2rem;
  height: 1px;
  background: var(--bd-gold);
  opacity: 0.6;
}
.bd-hero__rule:last-child { flex: 1 1 auto; max-width: 4rem; }

.bd-hero__title {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  margin-bottom: 2.5rem;
}

.bd-hero__title-line--display {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.bd-hero__title-line--script {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--bd-gold);
  margin-left: 0.1em;
  margin-top: 0.3em;
  letter-spacing: 0.01em;
}

.bd-hero__title-line--label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--bd-text-soft);
  margin-top: 1.25rem;
}

.bd-hero__lead {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.6;
  color: var(--bd-text);
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.bd-hero__lead em { color: var(--bd-gold); font-style: normal; font-weight: 500; }

.bd-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 3rem;
}
.bd-hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--bd-gold-soft);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.bd-hero__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bd-gold);
  color: var(--bd-ink);
}
.bd-hero__chip-icon svg { width: 16px; height: 16px; }

.bd-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 2.25rem;
  background: var(--bd-gold);
  color: var(--bd-ink);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s, background 0.25s, color 0.25s;
  box-shadow: 0 8px 24px -8px rgba(199,170,91,0.55);
}
.bd-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(199,170,91,0.7);
  background: var(--color-white);
  color: var(--bd-ink);
}
.bd-hero__cta-arrow svg { width: 18px; height: 18px; transition: transform 0.25s; }
.bd-hero__cta:hover .bd-hero__cta-arrow svg { transform: translateX(4px); }

.bd-hero__sparkle {
  position: absolute;
  color: var(--bd-gold);
  animation: bdSparkle 4s ease-in-out infinite;
  z-index: 1;
}
.bd-hero__sparkle svg { width: 32px; height: 32px; opacity: 0.6; }
.bd-hero__sparkle--tl { top: 8%; left: 6%; animation-delay: 0s; }
.bd-hero__sparkle--tr { top: 12%; right: 10%; animation-delay: 1.3s; }
.bd-hero__sparkle--br { bottom: 14%; right: 8%; animation-delay: 2.6s; }

@keyframes bdSparkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 0.9; transform: scale(1.15) rotate(180deg); }
}

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

/* ───────────────────────────────────────────────────────────
   SECTIONS — common
─────────────────────────────────────────────────────────── */
.bd-section {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 6vw, 6rem);
  position: relative;
}

.bd-section__head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
  position: relative;
}
.bd-section__head--left { text-align: left; margin-bottom: 2.5rem; }

.bd-section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--bd-gold);
  margin-bottom: 1rem;
}

.bd-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--color-white);
  line-height: 1.1;
  text-transform: uppercase;
}

.bd-section__rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--bd-gold);
  margin: 1.5rem auto 0;
  position: relative;
}
.bd-section__rule::before,
.bd-section__rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--bd-gold);
  transform: translateY(-50%) rotate(45deg);
}
.bd-section__rule::before { left: -3px; }
.bd-section__rule::after { right: -3px; }

/* ───────────────────────────────────────────────────────────
   PACKAGES
─────────────────────────────────────────────────────────── */
.bd-packages {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--bd-paper-warm), transparent 70%),
    var(--bd-ink);
}

.bd-packages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bd-pkg {
  position: relative;
  padding: 3rem 2.5rem 2.5rem;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(199,170,91,0.05), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(199,170,91,0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px -14px rgba(0,0,0,0.5);
}

/* Standard — silver gradient border (mask trick, same technique as Premium's gold) */
.bd-pkg:not(.bd-pkg--premium) { border-color: transparent; }
.bd-pkg:not(.bd-pkg--premium)::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg,
    #7a7a7a 0%,
    #f0f0f0 22%,
    #c8c8c8 42%,
    #7a7a7a 60%,
    #f0f0f0 80%,
    #c8c8c8 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}
/* Standard — tagline gold gradient text (same as Premium, italic kept) */
.bd-pkg:not(.bd-pkg--premium) .bd-pkg__tagline {
  background: linear-gradient(135deg, #f4e4a1 0%, #c7aa5b 50%, #8b6f2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 300;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45));
}
.bd-pkg:not(.bd-pkg--premium) .bd-pkg__tier {
  letter-spacing: 0.32em;
  background: linear-gradient(135deg, #f5f5f5 0%, #c8c8c8 50%, #8a8a8a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(220, 220, 220, 0.35))
          drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
}

/* Standard — sparkle diamond SVG (same as Premium) */
.bd-pkg:not(.bd-pkg--premium) .bd-pkg__feats li .bd-pkg__feat-icon svg { display: none; }
.bd-pkg:not(.bd-pkg--premium) .bd-pkg__feats li .bd-pkg__feat-icon {
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c7aa5b'%3E%3Cpath d='M12 1.5L14.2 9.8L22.5 12L14.2 14.2L12 22.5L9.8 14.2L1.5 12L9.8 9.8Z'/%3E%3Cpath d='M20 2L20.7 4.3L23 5L20.7 5.7L20 8L19.3 5.7L17 5L19.3 4.3Z' opacity='0.55'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 3px;
}
.bd-pkg:not(.bd-pkg--premium) .bd-pkg__feats li .bd-pkg__feat-icon::after { display: none !important; }

/* Standard — Art Deco corner ornaments (silver, analog do Premium) */
.bd-pkg:not(.bd-pkg--premium)::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23d8d8d8' stroke-width='0.9' opacity='0.75'%3E%3Cpath d='M2 14V2H14M8 2L8 8L2 8M14 4L4 4L4 14'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23d8d8d8' stroke-width='0.9' opacity='0.75'%3E%3Cpath d='M46 14V2H34M40 2L40 8L46 8M34 4L44 4L44 14'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23d8d8d8' stroke-width='0.9' opacity='0.75'%3E%3Cpath d='M2 34V46H14M8 46L8 40L2 40M14 44L4 44L4 34'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23d8d8d8' stroke-width='0.9' opacity='0.75'%3E%3Cpath d='M46 34V46H34M40 46L40 40L46 40M34 44L44 44L44 34'/%3E%3C/svg%3E");
  background-position: top left, top right, bottom left, bottom right;
  background-repeat: no-repeat;
  background-size: 48px 48px;
  z-index: 2;
  display: block;
}

/* ===== Teambuilding — 3-column game grid with posters ===== */
.tb-games { margin: 2.5rem 0; }
.tb-games__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #e8e6e0;
  margin: 0 0 1.5rem;
  text-align: left;
}
.tb-games__carousel {
  position: relative;
}
.tb-games__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 1rem;
}
.tb-games__viewport::-webkit-scrollbar { display: none; }
.tb-games__track {
  display: flex;
  gap: 1rem;
}
.tb-games__track .tb-game {
  scroll-snap-align: start;
  /* fill exactly N cards in viewport, no orphan peek */
  flex: 0 0 calc((100% - 3 * 1rem) / 4);
  min-width: 0;
}
@media (max-width: 1200px) {
  .tb-games__track .tb-game { flex-basis: calc((100% - 2 * 1rem) / 3); }
}
@media (max-width: 800px) {
  .tb-games__track .tb-game { flex-basis: calc((100% - 1 * 1rem) / 2); }
}
@media (max-width: 500px) {
  .tb-games__track .tb-game { flex-basis: calc(100% - 3rem); }
  .tb-games__track { gap: 0.75rem; }
}
.tb-games__nav {
  position: absolute;
  top: calc(50% - 1.5rem);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(199,170,91,0.55);
  color: var(--bd-gold);
  cursor: pointer;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tb-games__nav:hover {
  background: rgba(199,170,91,0.2);
  border-color: var(--bd-gold);
  transform: translateY(-50%) scale(1.06);
}
.tb-games__nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}
.tb-games__nav svg { width: 18px; height: 18px; }
.tb-games__nav--prev { left: -0.5rem; }
.tb-games__nav--next { right: -0.5rem; }
@media (max-width: 700px) {
  .tb-games__nav--prev { left: 0.25rem; }
  .tb-games__nav--next { right: 0.25rem; }
}
@media (max-width: 480px) {
  .tb-games__nav { width: 38px; height: 38px; }
}
.tb-game {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(199,170,91,0.28);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
  color: inherit;
}
.tb-game:hover {
  transform: translateY(-3px);
  border-color: var(--bd-gold);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.8),
              0 0 30px -12px rgba(199,170,91,0.35);
  color: inherit;
}
.tb-game__poster {
  aspect-ratio: 4 / 5;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #14120f;
  position: relative;
  overflow: hidden;
}
.tb-game__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,9,8,0.75) 100%);
}

/* ===== Teambuilding — video + Escape Room Challenge poster row =====
   Kept out of the 4:5 games carousel: native aspect ratios (short 9:16,
   poster 3:2) coexist here without fighting the grid. */
.tb-media-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 2.5rem;
}
.tb-media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(199,170,91,0.32);
  background: #14120f;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px -24px rgba(0,0,0,0.85);
}
.tb-media--video { height: 380px; aspect-ratio: 9 / 16; }
.tb-media--poster { height: 380px; aspect-ratio: 3 / 2; }
.tb-media--video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 780px) {
  .tb-media-row { flex-direction: column; }
  .tb-media--video { height: 360px; }
  .tb-media--poster { height: auto; width: 100%; max-width: 520px; }
}
.tb-game__meta {
  padding: 0.95rem 1.05rem 1.05rem;
}
.tb-game__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #f4e4a1;
  margin: 0 0 0.4rem;
  letter-spacing: 0.01em;
}
.tb-game__size {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(199,170,91,0.75);
}

/* ===== Teambuilding — "In action" photo collage (big + 2 small) + caption ===== */
.tb-inaction { margin: 2.5rem 0; }
.tb-inaction__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: #e8e6e0;
  margin: 0 0 1.25rem;
}
.tb-inaction__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
  align-items: stretch;
}
.tb-inaction__col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 0;
}
.tb-inaction__photo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  border: 1px solid rgba(199,170,91,0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}
/* main sets the height, small fills remaining */
.tb-inaction__photo--main { aspect-ratio: 4 / 3; }
.tb-inaction__photo--small { min-height: 0; }
.tb-inaction__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,9,8,0.55) 100%);
}
.tb-inaction__photo:hover {
  transform: translateY(-2px);
  border-color: var(--bd-gold);
  box-shadow: 0 12px 26px -12px rgba(0,0,0,0.7),
              0 0 20px -8px rgba(199,170,91,0.35);
}
.tb-inaction__caption {
  margin: 1.25rem 0 0;
  padding: 1.1rem 1.35rem;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #f4e4a1 0%, #c7aa5b 50%, #8b6f2f 100%) 1;
  color: #d8d3c8;
  font-size: 0.98rem;
  line-height: 1.6;
  font-style: italic;
  background: linear-gradient(90deg, rgba(199,170,91,0.06) 0%, transparent 60%);
}
@media (max-width: 640px) {
  .tb-inaction__grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .tb-inaction__col { grid-template-rows: 1fr; grid-template-columns: 1fr 1fr; }
  .tb-inaction__photo--main { aspect-ratio: 4 / 3; }
  .tb-inaction__photo--small { aspect-ratio: 4 / 3; min-height: 140px; }
  .tb-inaction__title { font-size: 1.1rem; margin-bottom: 0.9rem; }
  .tb-inaction__caption { font-size: 0.9rem; padding: 0.9rem 1rem; }
}

/* ===== Teambuilding — info boxes for lower content sections ===== */
.tb-info {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(199,170,91,0.28);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}
.tb-info__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #f4e4a1;
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.tb-info__intro {
  color: #d8d3c8;
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.tb-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.tb-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(199,170,91,0.14);
  color: #d8d3c8;
  font-size: 0.94rem;
  line-height: 1.5;
}
.tb-info__list li:last-child { border-bottom: none; }
.tb-info__list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c7aa5b'%3E%3Cpath d='M12 1.5L14.2 9.8L22.5 12L14.2 14.2L12 22.5L9.8 14.2L1.5 12L9.8 9.8Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
/* Side-by-side pair (Why us + What's included) */
.tb-info-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.tb-info-row .tb-info { margin: 0; }
@media (max-width: 760px) {
  .tb-info-row { grid-template-columns: 1fr; gap: 1rem; }
  .tb-info { padding: 1.5rem; }
  .tb-info__title { font-size: 1.2rem; }
}
/* Highlighted box (Private Event Lounge — flagship space) */
.tb-info--highlight {
  background: linear-gradient(180deg, rgba(199,170,91,0.10) 0%, rgba(199,170,91,0.03) 100%);
  border-color: rgba(199,170,91,0.55);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,0.6),
              0 0 34px -14px rgba(199,170,91,0.28);
  position: relative;
}
.tb-info--highlight .tb-info__title {
  background: linear-gradient(135deg, #f4e4a1 0%, #c7aa5b 50%, #a58538 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
/* Numbered steps for Reservation & payment */
.tb-info--steps .tb-info__list { counter-reset: step-counter; }
.tb-info--steps .tb-info__list li { padding-left: 0.25rem; counter-increment: step-counter; }
.tb-info--steps .tb-info__list li::before {
  content: counter(step-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #8b6f2f 0%, #c7aa5b 100%);
  color: #0a0908;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  margin-top: 0;
}

/* Section icon (large decorative in top-right, low opacity — adds character w/o clutter) */
.tb-info { position: relative; overflow: hidden; }
.tb-info::after {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 96px;
  height: 96px;
  opacity: 0.16;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(199,170,91,0.35));
  transition: opacity 0.3s ease;
}
.tb-info:hover::after { opacity: 0.24; }
@media (max-width: 640px) {
  .tb-info::after { width: 68px; height: 68px; top: 0.75rem; right: 0.75rem; }
}
/* per-section icons — gold outlined SVG */
.tb-info--why::after {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c7aa5b' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 L14.5 8.5 L21.5 9.5 L16.3 14.3 L17.6 21.2 L12 17.8 L6.4 21.2 L7.7 14.3 L2.5 9.5 L9.5 8.5 Z'/%3E%3C/svg%3E");
}
.tb-info--included::after {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c7aa5b' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8h18v13H3z'/%3E%3Cpath d='M2 8h20v3H2z'/%3E%3Cpath d='M12 8v13'/%3E%3Cpath d='M8 8a3 3 0 0 1 3-3c1 0 1 1 1 3M16 8a3 3 0 0 0-3-3c-1 0-1 1-1 3'/%3E%3C/svg%3E");
}
.tb-info--private::after {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4e4a1' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21V6l9-3v18'/%3E%3Cpath d='M12 21V9l8 3v9'/%3E%3Cpath d='M3 21h18'/%3E%3Ccircle cx='16' cy='15' r='0.9' fill='%23f4e4a1' stroke='none'/%3E%3C/svg%3E");
  opacity: 0.22;
}
.tb-info--larger::after {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c7aa5b' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7' cy='9' r='3'/%3E%3Ccircle cx='17' cy='9' r='3'/%3E%3Ccircle cx='12' cy='6' r='2.5'/%3E%3Cpath d='M2 20c0-3 2.2-5 5-5s5 2 5 5'/%3E%3Cpath d='M12 20c0-3 2.2-5 5-5s5 2 5 5'/%3E%3C/svg%3E");
}
.tb-info--reservation::after {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c7aa5b' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3Cpath d='M8 15l2.5 2.5L16 12' stroke-width='1.6'/%3E%3C/svg%3E");
}
/* Small icon in title (subtle inline) */
.tb-info__title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.tb-info__title::before {
  content: '';
  width: 6px;
  height: 24px;
  background: linear-gradient(180deg, #f4e4a1 0%, #c7aa5b 50%, #8b6f2f 100%);
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(199,170,91,0.55);
}

.bd-pkg__corner { display: none; }

/* ═══ PREMIUM — Art Deco black-marble + gold luxury treatment ═══ */
.bd-pkg--premium {
  --pkg-gold: #c7aa5b;
  --pkg-gold-warm: #f4e4a1;
  --pkg-gold-deep: #8b6f2f;
  background-color: #0a0908;
  background-image: url('/sites/default/files/premium-assets/marble-texture.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-clip: padding-box;
  border: 3px solid transparent;
  padding: 3rem 2.5rem 2.5rem;
  box-shadow:
    0 24px 60px -20px rgba(0,0,0,0.9),
    0 0 50px -12px rgba(199,170,91,0.2),
    inset 0 1px 0 rgba(255,235,180,0.06);
  isolation: isolate;
}
/* Gold gradient border (mask trick, grubsze o ~2px niż Standard) */
.bd-pkg--premium::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  padding: 3px;
  background: linear-gradient(135deg,
    var(--pkg-gold-deep) 0%,
    var(--pkg-gold-warm) 22%,
    var(--pkg-gold) 42%,
    var(--pkg-gold-deep) 60%,
    var(--pkg-gold-warm) 80%,
    var(--pkg-gold) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
  display: block;
}
/* Art Deco corner ornaments — SVG data-URI, 4 corners */
.bd-pkg--premium > .bd-pkg__corner,
.bd-pkg--premium::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23c7aa5b' stroke-width='0.9' opacity='0.85'%3E%3Cpath d='M2 14V2H14M8 2L8 8L2 8M14 4L4 4L4 14'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23c7aa5b' stroke-width='0.9' opacity='0.85'%3E%3Cpath d='M46 14V2H34M40 2L40 8L46 8M34 4L44 4L44 14'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23c7aa5b' stroke-width='0.9' opacity='0.85'%3E%3Cpath d='M2 34V46H14M8 46L8 40L2 40M14 44L4 44L4 34'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23c7aa5b' stroke-width='0.9' opacity='0.85'%3E%3Cpath d='M46 34V46H34M40 46L40 40L46 40M34 44L44 44L44 34'/%3E%3C/svg%3E");
  background-position: top left, top right, bottom left, bottom right;
  background-repeat: no-repeat;
  background-size: 48px 48px;
  z-index: 2;
  display: block;
}
.bd-pkg--premium { display: block; overflow: visible; }
.bd-pkg--premium > * { position: relative; z-index: 3; }

/* Ribbon "най-популярен" — refined gold gradient pill */
.bd-pkg--premium .bd-pkg__ribbon {
  top: -14px;
  right: 24px;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  background: linear-gradient(135deg, var(--pkg-gold-deep) 0%, var(--pkg-gold) 45%, var(--pkg-gold-warm) 100%);
  color: #0a0a0a;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  border: 1px solid rgba(255,235,180,0.5);
  box-shadow: 0 6px 18px -4px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.4);
}
.bd-pkg--premium .bd-pkg__ribbon svg { color: #0a0a0a; }

/* Tier label — Premium is larger + full opacity for extra pop */
.bd-pkg--premium .bd-pkg__tier {
  font-size: 1.35rem;
  letter-spacing: 0.28em;
  filter: drop-shadow(0 0 10px rgba(199, 170, 91, 0.55))
          drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

/* Tagline — gold gradient text */
.bd-pkg--premium .bd-pkg__tagline {
  background: linear-gradient(135deg, var(--pkg-gold-warm) 0%, var(--pkg-gold) 50%, var(--pkg-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
}

/* Features — Premium sparkle diamond SVG (back to previous) */
.bd-pkg--premium .bd-pkg__feats li .bd-pkg__feat-icon svg { display: none; }
.bd-pkg--premium .bd-pkg__feats li .bd-pkg__feat-icon {
  color: var(--pkg-gold);
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c7aa5b'%3E%3Cpath d='M12 1.5L14.2 9.8L22.5 12L14.2 14.2L12 22.5L9.8 14.2L1.5 12L9.8 9.8Z'/%3E%3Cpath d='M20 2L20.7 4.3L23 5L20.7 5.7L20 8L19.3 5.7L17 5L19.3 4.3Z' opacity='0.55'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 3px;
}
.bd-pkg--premium .bd-pkg__feats li .bd-pkg__feat-icon::after {
  display: none !important;
}
.bd-pkg--premium .bd-pkg__feats li {
  border-color: rgba(199, 170, 91, 0.16);
}
.bd-pkg--premium .bd-pkg__feats li a {
  color: var(--pkg-gold-warm);
  text-decoration: underline;
  text-decoration-color: rgba(199,170,91,0.5);
  text-underline-offset: 3px;
}

/* Pricing — cream text on marble */
.bd-pkg--premium .bd-pkg__count { color: rgba(255,255,255,0.85); }
.bd-pkg--premium .bd-pkg__price { color: var(--pkg-gold-warm); }
.bd-pkg--premium .bd-pkg__cur { color: var(--pkg-gold); }
.bd-pkg--premium .bd-pkg__per-kid { color: rgba(255,235,180,0.75); }
.bd-pkg--premium .bd-pkg__regular { color: rgba(255,255,255,0.4); }
.bd-pkg--premium .bd-pkg__dots { border-bottom-color: rgba(199, 170, 91, 0.25); }

.bd-pkg__ribbon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bd-gold);
  color: var(--bd-ink);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  box-shadow: 0 4px 12px -4px rgba(199,170,91,0.5);
}
.bd-pkg__ribbon svg { width: 12px; height: 12px; }

.bd-pkg__head { margin-bottom: 2rem; }
.bd-pkg__tier {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--bd-gold);
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, #f4e4a1 0%, #c7aa5b 45%, #a58538 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(199, 170, 91, 0.35))
          drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
  padding: 0.15em 0;
  position: relative;
}
.bd-pkg__tier::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0.32em; /* offset by letter-spacing of last char */
  bottom: -0.15em;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,170,91,0.55), transparent);
}
.bd-pkg--premium .bd-pkg__tier { color: var(--bd-gold); }
.bd-pkg__tagline {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.bd-pkg__pricing {
  padding: 1.5rem 0;
  border-top: 1px solid var(--bd-line);
  border-bottom: 1px solid var(--bd-line);
  margin-bottom: 1.75rem;
}

.bd-pkg__row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  font-family: var(--font-heading);
}
.bd-pkg__count {
  font-size: 0.95rem;
  color: var(--bd-text-soft);
  letter-spacing: 0.02em;
}
.bd-pkg__dots {
  flex: 1;
  border-bottom: 1px dotted var(--bd-line);
  margin-bottom: 0.3em;
}
.bd-pkg__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bd-gold);
  letter-spacing: -0.01em;
}
.bd-pkg__cur {
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 0.1em;
  opacity: 0.7;
}
.bd-pkg__per-kid {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bd-text-soft);
  margin-left: 0.15em;
  opacity: 0.85;
}
.bd-pkg__prices {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.bd-pkg__regular {
  font-size: 0.85rem;
  color: var(--bd-text-soft);
}

.bd-pkg__feats li {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--bd-text);
}
.bd-pkg__feats li > .bd-pkg__feat-icon { margin-right: 0.75rem; }
.bd-pkg__feats li + li { border-top: 1px solid var(--bd-line); }
.bd-pkg__feat-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--bd-gold);
  margin-top: 2px;
}
.bd-pkg__feat-icon svg { width: 100%; height: 100%; }

/* Premium-only items — highlight in gold */
.bd-pkg__feat--premium {
  color: var(--bd-gold) !important;
  font-weight: 500;
}
.bd-pkg__feat--premium .bd-pkg__feat-icon {
  color: var(--bd-gold);
  position: relative;
}
.bd-pkg__feat--premium .bd-pkg__feat-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--bd-gold-soft);
  border-radius: 50%;
}

/* ───────────────────────────────────────────────────────────
   ROOMS
─────────────────────────────────────────────────────────── */
.bd-rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bd-room {
  display: flex;
  flex-direction: column;
  background: var(--color-dark);
  border: 1px solid var(--color-gold);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bd-room:hover {
  box-shadow: 0 0 14px rgba(199, 170, 91, 0.4);
}

.bd-room__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 0;
}
.bd-room__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.bd-room:hover .bd-room__poster { transform: scale(1.05); }

.bd-room__corner { display: none; }

.bd-room__body {
  padding: 1.5rem 1.5rem 1.75rem;
}
.bd-room__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.bd-room__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--bd-text-soft);
  margin-bottom: 1.25rem;
}

.bd-room__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bd-line);
}
.bd-room__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.bd-room__meta-row dt {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--bd-text-soft);
}
.bd-room__meta-row dd {
  color: var(--color-white);
  font-weight: 500;
}

.bd-room__locks {
  display: inline-flex;
  gap: 0.3rem;
  color: var(--bd-gold);
  align-items: center;
}
.bd-room__locks span { display: inline-flex; color: var(--bd-gold); }
.bd-room__locks .bd-room__lock--filled svg { fill: var(--bd-gold); }
.bd-room__locks .bd-room__lock--open { opacity: 0.55; }
.bd-room__locks .bd-room__lock--open svg { stroke: var(--bd-gold); opacity: 1; }
.bd-room__locks svg { width: 18px; height: 18px; display: block; }

/* ───────────────────────────────────────────────────────────
   TIMELINE + PARTY ROOM
─────────────────────────────────────────────────────────── */
.bd-experience {
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, var(--bd-gold-faint), transparent 60%),
    var(--bd-ink);
}

.bd-experience__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.bd-timeline__steps {
  position: relative;
  padding-left: 1rem;
}
.bd-timeline__steps::before {
  content: '';
  position: absolute;
  /* padding-left (1rem = 16px) + half of node (24px) = 40px, through icon centers */
  left: 40px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, var(--bd-gold) 0%, var(--bd-gold-soft) 100%);
}

.bd-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
}
.bd-step:last-child { padding-bottom: 0; }

.bd-step__node {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--bd-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bd-ink);
  z-index: 1;
}
.bd-step__icon { color: var(--bd-gold); display: flex; }
.bd-step__icon svg { width: 22px; height: 22px; }

/* Step sprite icons — pulled from chat-gpt-icons-v2.png (256×256, 4×4 grid) */
.bd-step__sprite {
  width: 26px;
  height: 26px;
  background-image: url('../images/bd-icons.png');
  background-size: 400% 400%;
  background-repeat: no-repeat;
  image-rendering: smooth;
  display: block;
}
.bd-step__sprite--door    { background-position: 66.667% 33.333%; }
.bd-step__sprite--lock    { background-position: 33.333% 33.333%; }
.bd-step__sprite--cake    { background-position: 0% 66.667%; }
.bd-step__sprite--palette { background-position: 33.333% 66.667%; }
.bd-step__sprite--exit    { background-position: 66.667% 66.667%; }
/* Premium step keeps node gold-filled — invert sprite to dark icon */
.bd-step--premium .bd-step__sprite { filter: brightness(0) saturate(100%); }

.bd-step--premium .bd-step__node {
  border-color: var(--bd-gold);
  background: linear-gradient(135deg, var(--bd-gold), #b89640);
}
.bd-step--premium .bd-step__icon { color: var(--bd-ink); }

.bd-step__body {
  padding-top: 0.35rem;
}
.bd-step__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--bd-gold);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}
.bd-step strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.bd-step strong em {
  font-style: italic;
  font-weight: 400;
  font-size: 0.85em;
  color: var(--bd-gold);
  margin-left: 0.4em;
}
.bd-step p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--bd-text-soft);
}

/* Party room mosaic */
.bd-party-room__mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.bd-party-room__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bd-paper);
  border: 1px solid var(--bd-line);
  border-radius: 14px;
  overflow: hidden;
}
.bd-party-room__photo--1 { grid-column: 1; grid-row: 1; aspect-ratio: 16 / 10; }
.bd-party-room__photo--2 { grid-column: 2; grid-row: 1; }
.bd-party-room__photo--3 { grid-column: 1; grid-row: 2; }
.bd-party-room__photo--4 { grid-column: 2; grid-row: 2; aspect-ratio: 4 / 3; }

/* 2-photo layout: when --3 missing, drop to single row, equal cols */
.bd-party-room__mosaic:not(:has(.bd-party-room__photo--3)) {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.bd-party-room__mosaic:not(:has(.bd-party-room__photo--3)) .bd-party-room__photo--1,
.bd-party-room__mosaic:not(:has(.bd-party-room__photo--3)) .bd-party-room__photo--2 {
  grid-row: 1;
  aspect-ratio: 4 / 3;
}
.bd-party-room__mosaic:not(:has(.bd-party-room__photo--3)) .bd-party-room__photo--2 { grid-column: 2; }

.bd-party-room__photo[style*="background-image"] {
  background-size: cover;
  background-position: center;
  border-color: var(--bd-gold-soft);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s;
}
.bd-party-room__photo[style*="background-image"]:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px -10px rgba(0,0,0,0.6);
}

.bd-party-room__photo--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bd-text-soft);
  font-size: 0.8rem;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(199,170,91,0.03) 0px, rgba(199,170,91,0.03) 10px, transparent 10px, transparent 20px),
    var(--bd-paper);
}
.bd-party-room__photo--placeholder span {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bd-gold);
  font-size: 0.75rem;
}
.bd-party-room__photo--placeholder small {
  margin-top: 0.4rem;
  opacity: 0.5;
  font-size: 0.7rem;
}

/* Info boxes */
.bd-party-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bd-party-info__box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  border: 1px solid var(--bd-line);
  background: var(--bd-paper);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.bd-party-info__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.bd-party-info__box--no::before { background: #c64b4b; }
.bd-party-info__box--yes::before { background: var(--bd-gold); }

.bd-party-info__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bd-party-info__box--no .bd-party-info__icon { color: #c64b4b; }
.bd-party-info__box--yes .bd-party-info__icon { color: var(--bd-gold); }
.bd-party-info__icon svg { width: 100%; height: 100%; }

.bd-party-info__box h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}
.bd-party-info__box p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--bd-text-soft);
}

/* ───────────────────────────────────────────────────────────
   INQUIRY anchor
─────────────────────────────────────────────────────────── */
.bd-inquiry {
  background: var(--bd-ink);
  text-align: center;
}
.bd-inquiry__note {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  border: 1px dashed var(--bd-gold-soft);
  border-radius: 14px;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--bd-text-soft);
}
.bd-inquiry__note a { color: var(--bd-gold); text-decoration: underline; text-underline-offset: 3px; }

/* ───────────────────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .bd-packages__grid { grid-template-columns: 1fr; }
  .bd-rooms__grid { grid-template-columns: 1fr 1fr; }
  .bd-experience__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .bd-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: 700px;
  }
  .bd-hero__photo {
    /* Source is already cropped to shoulders+cake — just use cover */
    background-size: cover;
    background-position: center;
  }
  .bd-hero__eyebrow { margin-bottom: 1.75rem; }
  .bd-hero__title { margin-bottom: 1.75rem; }
  .bd-hero__title-line--label { margin-top: 1rem; }
  .bd-hero__lead { margin-bottom: 2rem; line-height: 1.6; }
  .bd-hero__chips {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
  }
  .bd-rooms__grid { grid-template-columns: 1fr; }
  .bd-party-room__mosaic {
    grid-template-columns: 1fr;
  }
  .bd-party-room__photo--1, .bd-party-room__photo--2,
  .bd-party-room__photo--3, .bd-party-room__photo--4 {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  .bd-hero__sparkle { display: none; }
  .bd-pkg { padding: 2.5rem 1.5rem 2rem; }
}

/* Front page already neutralizes hero — but this is its own page */
body[class*="page-rozhdeni-dni"] .site-main,
body[class*="page-birthday"] .site-main { padding-top: 0; }
body[class*="page-rozhdeni-dni"] .hero,
body[class*="page-birthday"] .hero { margin-top: -128px; padding: 0; min-height: 0; background: none; }
body[class*="page-rozhdeni-dni"] .hero::before,
body[class*="page-birthday"] .hero::before { content: none; }
body[class*="page-rozhdeni-dni"] .hero-content,
body[class*="page-birthday"] .hero-content { display: none; }
body[class*="page-rozhdeni-dni"] #block-funkymonkeys-theme-page-title,
body[class*="page-birthday"] #block-funkymonkeys-theme-page-title { display: none; }

/* Teambuilding — same edge-to-edge treatment as birthday */
body[class*="page-teambuilding-korporativni-sabitia"] .site-main,
body[class*="page-en-teambuilding"] .site-main { padding-top: 0; }
body[class*="page-teambuilding-korporativni-sabitia"] .hero,
body[class*="page-en-teambuilding"] .hero { margin-top: -128px; padding: 0; min-height: 0; background: none; }
body[class*="page-teambuilding-korporativni-sabitia"] .hero::before,
body[class*="page-en-teambuilding"] .hero::before { content: none; }
body[class*="page-teambuilding-korporativni-sabitia"] .hero-content,
body[class*="page-en-teambuilding"] .hero-content { display: none; }

/* ===== Per-room pricing inside bd-room card (June offer) ===== */
.bd-room__pricing {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(201, 165, 92, .3);
}
.bd-room__price-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: .85;
  margin-bottom: .5rem;
  text-align: right;
}
.bd-room__price-tiers {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.bd-room__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .8rem;
  font-size: .92rem;
}
.bd-room__price-count { color: var(--color-text, #f5f0e6); opacity: .85; }
.bd-room__price-amount {
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}
.bd-room__price-amount small {
  font-weight: 400;
  font-size: .72rem;
  opacity: .65;
  margin-left: .2rem;
}

/* ===== Birthday price list (bd-pricelist) — old offer format ===== */
.bd-pricelist__rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.bd-pricelist__room {
  border: 1px solid var(--color-gold);
  border-radius: 14px;
  background: rgba(201, 165, 92, .04);
  padding: 1.5rem 1.4rem;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.bd-pricelist__room:hover {
  background: rgba(201, 165, 92, .08);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,.3);
}
.bd-pricelist__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(201, 165, 92, .3);
  letter-spacing: .02em;
}
.bd-pricelist__tiers {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bd-pricelist__tiers li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px dashed rgba(201, 165, 92, .18);
}
.bd-pricelist__tiers li:last-child { border-bottom: none; }
.bd-pricelist__count {
  font-size: .92rem;
  color: var(--color-text, #f5f0e6);
}
.bd-pricelist__price {
  font-weight: 600;
  color: var(--color-gold);
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}
.bd-pricelist__price small {
  display: block;
  font-weight: 400;
  font-size: .72rem;
  opacity: .7;
  margin-top: 1px;
}
@media (max-width: 640px) {
  .bd-pricelist__rooms { gap: 1rem; }
  .bd-pricelist__room { padding: 1.25rem 1.1rem; }
  .bd-pricelist__name { font-size: 1.2rem; }
  .bd-pricelist__tiers li { padding: .55rem 0; }
}


/* ===== Birthday hero — trust badges (rating + birthdays count) ===== */
.bd-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1.4rem 0 1.6rem;
  align-items: stretch;
  justify-content: flex-start;
}
.bd-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.9rem 0.6rem 0.75rem;
  border: 1px solid var(--bd-gold-soft);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
  color: var(--bd-text);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  font-family: var(--font-heading);
}
a.bd-hero__trust-item:hover {
  border-color: var(--bd-gold);
  background: rgba(10, 10, 10, 0.7);
  transform: translateY(-1px);
}
.bd-hero__trust-stars {
  color: var(--bd-gold);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.bd-hero__trust-icon {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--bd-gold);
  flex-shrink: 0;
}
.bd-hero__trust-icon svg { width: 100%; height: 100%; }
.bd-hero__trust-label {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}
.bd-hero__trust-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bd-text);
  letter-spacing: 0.03em;
}
.bd-hero__trust-source {
  font-size: 0.68rem;
  color: var(--bd-text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .bd-hero__trust { gap: 10px; }
  .bd-hero__trust-item { padding: 0.5rem 0.75rem; }
  .bd-hero__trust-value { font-size: 0.85rem; }
  .bd-hero__trust-source { font-size: 0.62rem; }
}

/* ===== Quick contact (Viber + Call us), sticky bottom-right ===== */
.fm-quick-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  pointer-events: none;
}
.fm-quick-contact__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .95rem .6rem .7rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  line-height: 1.1;
  box-shadow: 0 6px 18px rgba(0,0,0,.35), 0 2px 4px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  background: #1f1f1f;
}
.fm-quick-contact__btn:hover,
.fm-quick-contact__btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.4), 0 3px 6px rgba(0,0,0,.3);
  filter: brightness(1.05);
  text-decoration: none;
  color: #fff;
}
.fm-quick-contact__btn svg { flex: 0 0 auto; }
.fm-quick-contact__label { display: inline-flex; flex-direction: column; align-items: flex-start; }
.fm-quick-contact__title { font-weight: 700; letter-spacing: .02em; }
.fm-quick-contact__sub { font-size: .72rem; opacity: .8; margin-top: 1px; }
.fm-quick-contact__btn--call {
  background: linear-gradient(135deg, #c9a55c 0%, #b08a3d 100%);
  color: #0d0d0d;
}
.fm-quick-contact__btn--call:hover,
.fm-quick-contact__btn--call:focus-visible { color: #0d0d0d; }
.fm-quick-contact__btn--viber { background: linear-gradient(135deg, #665cac 0%, #59519a 100%); }

@media (max-width: 640px) {
  .fm-quick-contact { right: .6rem; bottom: .6rem; gap: .45rem; }
  .fm-quick-contact__btn { padding: .55rem .85rem .55rem .65rem; font-size: .85rem; }
  .fm-quick-contact__sub { font-size: .68rem; }
}

body.eu-cookie-compliance-popup-open .fm-quick-contact { bottom: 7rem; }

/* ============================================================
   INVITATION CARD GENERATOR (/pokana, /invitation-card)
   ============================================================ */
.inv {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  color: var(--color-text, #f5f0e6);
}
.inv__intro { text-align: center; max-width: 720px; margin: 0 auto 2rem; }
.inv__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-gray-light, #b9b09f);
}
.inv__app {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 2rem;
  align-items: start;
}

.inv__editor {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,165,92,.25);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
}
.inv__editor-title {
  margin: 0 0 1.25rem;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(201,165,92,.3);
}
.inv__field { display: block; margin-bottom: 1.1rem; border: 0; padding: 0; }
.inv__field > legend.inv__label, .inv__field > .inv__label { padding: 0; margin-bottom: .35rem; }
.inv__label {
  display: block;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: .85;
  font-weight: 600;
}
.inv__label small {
  display: inline;
  text-transform: none;
  letter-spacing: 0;
  font-size: .72rem;
  opacity: .65;
  font-weight: 400;
  margin-left: .25rem;
}
.inv__input {
  width: 100%;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(201,165,92,.3);
  border-radius: 8px;
  color: var(--color-text, #f5f0e6);
  font-family: inherit;
  font-size: .95rem;
  padding: .6rem .8rem;
  transition: border-color .18s ease, background .18s ease;
}
.inv__input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(0,0,0,.45);
}
textarea.inv__input { resize: vertical; min-height: 70px; }

.inv__presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
  margin-bottom: .65rem;
}
.inv__preset {
  aspect-ratio: 4/3;
  border: 2px solid transparent;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 0;
  transition: border-color .18s ease, transform .18s ease;
}
.inv__preset:hover { transform: translateY(-2px); }
.inv__preset.is-active { border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(201,165,92,.25); }

.inv__upload { display: block; cursor: pointer; }

.inv__colors {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.inv__color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  cursor: pointer;
  padding: 0;
  transition: transform .15s ease, border-color .15s ease;
}
.inv__color:hover { transform: scale(1.1); }
.inv__color.is-active { border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(201,165,92,.25); }

.inv__fonts, .inv__layouts { display: flex; flex-wrap: wrap; gap: .4rem; }
.inv__font, .inv__layout {
  flex: 1 1 auto;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(201,165,92,.25);
  color: var(--color-text, #f5f0e6);
  padding: .55rem .7rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: .88rem;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}
.inv__font:hover, .inv__layout:hover { background: rgba(201,165,92,.1); }
.inv__font.is-active, .inv__layout.is-active {
  background: rgba(201,165,92,.15);
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.inv__layout { flex: 0 0 auto; min-width: 40px; font-size: 1.1rem; }

.inv__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(201,165,92,.2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.inv__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid #1a1410;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(201,165,92,.4);
}
.inv__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid #1a1410;
  cursor: pointer;
}
.inv__range-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  opacity: .75;
}
.inv__range-row span { flex: 0 0 auto; }
.inv__sizes { display: grid; gap: .55rem; }
.inv__size-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: .7rem;
  align-items: center;
}
.inv__size-row > span {
  font-size: .8rem;
  opacity: .8;
}
.inv__size-row > .inv__range { width: 100%; }

/* Preview pane */
.inv__preview-pane { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 1rem; }
.inv__preview-frame {
  background: repeating-conic-gradient(rgba(255,255,255,.03) 0% 25%, transparent 0% 50%) 50% / 24px 24px;
  border-radius: 16px;
  padding: 1.25rem;
}
.inv__card {
  position: relative;
  aspect-ratio: 1.414 / 1; /* A6 landscape */
  width: 100%;
  border-radius: 12px;
  background-image: url(/sites/default/files/invitation/preset-11.webp);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05);
}
.inv__card-content {
  position: absolute;
  inset: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f9ece0;
  transition: color .2s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
  padding: 0 4%;
}
.inv__card-content[data-layout="center"] { justify-content: center; align-items: center; text-align: center; }
.inv__card-content[data-layout="top-left"] { justify-content: flex-start; align-items: flex-start; text-align: left; }
.inv__card-content[data-layout="top-right"] { justify-content: flex-start; align-items: flex-end; text-align: right; }
.inv__card-content[data-layout="bottom-right"] { justify-content: flex-end; align-items: flex-end; text-align: right; }

.inv__card-content {
  --inv-scale-occasion: 1;
  --inv-scale-name: 1;
  --inv-scale-when: 1;
  --inv-scale-message: 1;
  --inv-scale-from: 1;
  --inv-scale-address: 1;
}

.inv__card-occasion {
  font-size: calc(clamp(.95rem, 2.4vw, 1.3rem) * var(--inv-scale-occasion, 1));
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: .5rem;
}
.inv__card-name {
  font-size: calc(clamp(2rem, 6.8vw, 3.8rem) * var(--inv-scale-name, 1));
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 .4rem;
}
.inv__card-divider { display: none; }
.inv__card-when {
  font-size: calc(clamp(1.1rem, 3vw, 1.7rem) * var(--inv-scale-when, 1));
  font-weight: 500;
  margin-bottom: .65rem;
}
.inv__card-message {
  font-size: calc(clamp(.85rem, 2vw, 1rem) * var(--inv-scale-message, 1));
  opacity: .9;
  max-width: 80%;
  line-height: 1.4;
}

/* Fonts */
.inv__card[data-font="serif-display"] .inv__card-name { font-family: 'Cinzel', Georgia, serif; letter-spacing: .04em; }
.inv__card[data-font="serif-display"] .inv__card-occasion { font-family: 'Cinzel', Georgia, serif; }
.inv__card[data-font="script"] .inv__card-name { font-family: 'Allura', 'Dancing Script', cursive; font-weight: 400; letter-spacing: .01em; font-size: calc(clamp(2.55rem, 8.5vw, 4.7rem) * var(--inv-scale-name, 1)); }
.inv__card[data-font="script"] .inv__card-occasion { font-family: Georgia, serif; font-style: italic; }
.inv__card[data-font="sans-bold"] .inv__card-name { font-family: 'Urbanist', sans-serif; font-weight: 800; letter-spacing: -.01em; }
.inv__card[data-font="sans-bold"] .inv__card-occasion { font-family: 'Urbanist', sans-serif; font-weight: 600; }

.inv__card-watermark {
  position: absolute;
  bottom: .55rem;
  right: .85rem;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  font-family: 'Urbanist', sans-serif;
}

.inv__card-from {
  font-size: calc(clamp(.78rem, 1.8vw, .95rem) * var(--inv-scale-from, 1));
  font-style: italic;
  margin-top: .5rem;
  opacity: .9;
  letter-spacing: .01em;
}
.inv__card-address {
  font-size: calc(clamp(.7rem, 1.6vw, .85rem) * var(--inv-scale-address, 1));
  margin-top: .35rem;
  opacity: .85;
  letter-spacing: .02em;
}

/* Twins case: when both names present, shrink + allow wrap */
.inv__card[data-twins="yes"] .inv__card-name {
  font-size: calc(clamp(1.35rem, 4.7vw, 2.55rem) * var(--inv-scale-name, 1));
  line-height: 1.1;
  white-space: normal;
  word-break: break-word;
  max-width: 90%;
}
.inv__card-name {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* QR code overlay */
.inv__card-qr {
  position: absolute;
  width: 16%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.45));
  display: none;
  pointer-events: none;
}
.inv__card[data-qr-pos="top-left"]     .inv__card-qr { display: block; top: 4%;    left: 4%; }
.inv__card[data-qr-pos="top-right"]    .inv__card-qr { display: block; top: 4%;    right: 4%; }
.inv__card[data-qr-pos="bottom-left"]  .inv__card-qr { display: block; bottom: 4%; left: 4%; }
.inv__card[data-qr-pos="bottom-right"] .inv__card-qr { display: block; bottom: 4%; right: 4%; }

.inv__qr-positions { display: flex; flex-wrap: wrap; gap: .4rem; }

/* Logo picker */
.inv__logos { display: flex; flex-wrap: wrap; gap: .4rem; }
.inv__logo {
  flex: 0 0 auto;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(201,165,92,.25);
  color: var(--color-text, #f5f0e6);
  padding: .55rem .7rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: .88rem;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
  min-width: 40px;
}
.inv__logo:hover { background: rgba(201,165,92,.1); }
.inv__logo.is-active {
  background: rgba(201,165,92,.15);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.inv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.inv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.inv__btn--gold {
  background: linear-gradient(135deg, #c9a55c 0%, #b08a3d 100%);
  color: #0d0d0d;
  border-color: var(--color-gold);
}
.inv__btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,165,92,.35); color: #0d0d0d; }
.inv__btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.inv__btn--ghost:hover { background: rgba(201,165,92,.12); transform: translateY(-1px); }

@media (max-width: 860px) {
  .inv__app { grid-template-columns: 1fr; }
  .inv__preview-pane { position: static; order: -1; }
}
@media (max-width: 480px) {
  .inv { padding: 1rem .75rem 2rem; }
  .inv__editor { padding: 1.1rem 1rem; }
}

/* ===== Guest reviews (Google + TripAdvisor) on home ===== */
.fm-reviews {
  max-width: 980px;
  margin: 3rem auto;
  padding: 0 1.25rem;
  text-align: center;
}
.fm-reviews__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.fm-reviews__rule {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--color-gold);
  opacity: .45;
}
.fm-reviews__title {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
.fm-reviews__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.fm-reviews__pill {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.6rem;
  min-width: 360px;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  background: rgba(201, 165, 92, .04);
  color: var(--color-text, #f5f0e6);
  text-decoration: none;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.fm-reviews__pill:hover,
.fm-reviews__pill:focus-visible {
  background: rgba(201, 165, 92, .12);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  text-decoration: none;
  color: var(--color-text, #f5f0e6);
}
.fm-reviews__brand {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}
.fm-reviews__stars {
  font-size: 1.15rem;
  color: #ffc94a;
  letter-spacing: .08em;
}
.fm-reviews__meta {
  font-size: .92rem;
  color: var(--color-text, #f5f0e6);
}
.fm-reviews__meta strong { color: var(--color-gold); font-weight: 700; }

.fm-reviews__quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.fm-reviews__quote {
  position: relative;
  margin: 0;
  padding: 2rem 1.4rem 1.25rem;
  border: 1px solid var(--color-gold);
  background: rgba(201, 165, 92, .04);
  border-radius: 14px;
  text-align: left;
  font-size: .92rem;
  line-height: 1.55;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}
.fm-reviews__quote::before {
  content: "\201C";
  position: absolute;
  top: -0.6rem;
  left: 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: .18;
  pointer-events: none;
}
.fm-reviews__quote::after {
  content: "★★★★★";
  position: absolute;
  top: .55rem;
  right: 1rem;
  font-size: .78rem;
  letter-spacing: .08em;
  color: #ffc94a;
  opacity: .9;
}
.fm-reviews__quote:hover {
  background: rgba(201, 165, 92, .1);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,.3), 0 0 0 1px rgba(201, 165, 92, .25);
  border-color: rgba(201, 165, 92, .8);
}
.fm-reviews__quote p {
  position: relative;
  z-index: 1;
}
.fm-reviews__quote p {
  margin: 0 0 .55rem;
  font-style: italic;
  color: var(--color-text, #f5f0e6);
}
.fm-reviews__quote cite {
  font-style: normal;
  font-size: .82rem;
  color: var(--color-gold);
  letter-spacing: .04em;
}

.fm-reviews__cta {
  margin: 1.8rem 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.fm-reviews__link {
  color: var(--color-gold);
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(201,165,92,.4);
  padding-bottom: 2px;
  transition: border-color .18s ease, color .18s ease;
}
.fm-reviews__link:hover,
.fm-reviews__link:focus-visible {
  color: #ffd97a;
  border-bottom-color: var(--color-gold);
}

@media (max-width: 640px) {
  .fm-reviews { margin: 2rem auto; }
  .fm-reviews__pill { min-width: 0; flex: 1 1 100%; }
  .fm-reviews__rule { max-width: 40px; }
  .fm-reviews__cta { flex-direction: column; gap: .8rem; }
}

/* ===== Booking terms (webform_markup at end of inquiry forms) ===== */
.booking-terms {
  margin: 2rem 0 .5rem;
  padding: 1.25rem 1.4rem 1.4rem;
  border: 1px solid var(--color-gold);
  border-radius: 14px;
  background: rgba(201, 165, 92, .06);
  color: var(--color-text, #f5f0e6);
  font-size: .9rem;
  line-height: 1.55;
}
.booking-terms__title {
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin: 0 0 .8rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(201, 165, 92, .3);
}
.booking-terms__list {
  margin: 0;
  padding-left: 1.2rem;
}
.booking-terms__list li { margin-bottom: .55rem; }
.booking-terms__list li:last-child { margin-bottom: 0; }
.booking-terms strong { color: var(--color-gold); font-weight: 700; }
@media (max-width: 640px) {
  .booking-terms { padding: 1rem 1.1rem 1.15rem; font-size: .86rem; }
  .booking-terms__title { font-size: .92rem; }
}

/* Teambuilding — highlight "Escape Room Challenge" (or any strong) in event-category — not as link */
body[class*="page-teambuilding-korporativni-sabitia"] .event-category strong,
body[class*="page-en-teambuilding"] .event-category strong {
  background: linear-gradient(135deg, #f4e4a1 0%, #c7aa5b 55%, #a58538 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  filter: drop-shadow(0 0 6px rgba(199,170,91,0.35));
}
