/* =============================================================================
   BE Artists – theme styles
   Look & feel replicates bentertained.dk (redesign): Karla body, Poppins display,
   red accent #BA303D / #AC323E, 1350px container, 8px radii, soft shadows.
   ========================================================================== */

:root {
  --be-primary: #BA303D;
  --be-accent: #AC323E;
  --be-accent-2: #CB462E;
  --be-gradient: linear-gradient(90deg, #CB462E 0%, #BA303D 100%);
  --be-gradient-rev: linear-gradient(90deg, #BA303D 0%, #CB462E 100%);
  --be-red-10: #FFEEEF;
  --be-red-15: #FFE9EB;
  --be-dark: #262626;
  --be-text: #404040;
  --be-text-2: #525252;
  --be-muted: #737373;
  --be-grey: #F5F5F5;
  --be-grey-2: #FAFAFA;
  --be-line: #E5E5E5;
  --be-border: #D4D4D4;
  --be-gold: #FFCA0F;
  --be-white: #ffffff;

  --be-font-body: "Karla", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --be-font-display: "Poppins", var(--be-font-body);
  --be-font-nav: "Montserrat", var(--be-font-body);

  --be-radius: 8px;
  --be-radius-lg: 16px;
  --be-shadow: 0 1px 1.66px 0 rgba(64,64,64,.03), 0 3.35px 5.58px 0 rgba(64,64,64,.04), 0 15px 25px 0 rgba(64,64,64,.07);
  --be-shadow-btn: 0 2px 3px 0 rgba(172,50,62,.08), 0 6px 6px 0 rgba(172,50,62,.07), 0 14px 8px 0 rgba(172,50,62,.04);

  --be-container: 1350px;
  --be-header-h: 120px;
}

/* -----------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--be-header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--be-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--be-dark);
  background: var(--be-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--be-accent); text-decoration: none; }
a:hover { color: var(--be-primary); }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-family: var(--be-font-display); color: var(--be-dark); line-height: 1.15; }
button { font: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--be-accent); outline-offset: 2px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

.be-skip-link { position: absolute; left: -999px; top: 8px; z-index: 1000; background: var(--be-white); padding: 8px 16px; border-radius: 6px; }
.be-skip-link:focus { left: 8px; }

.be-container { width: 100%; max-width: var(--be-container); margin: 0 auto; padding: 0 15px; }
.be-narrow { max-width: 900px; }
.be-section { margin: 56px 0; }
.be-divider { border-top: 1px solid var(--be-grey); padding-top: 40px; margin-top: 40px; }
.be-block-title { font-family: var(--be-font-display); font-weight: 700; font-size: 24px; line-height: 1; color: var(--be-dark); }
.be-icon { width: 20px; height: 20px; display: inline-block; flex-shrink: 0; }
.be-dot { margin: 0 6px; color: var(--be-border); }
[hidden] { display: none !important; }

/* Prose (descriptions / pages) */
.be-prose { font-size: 16px; line-height: 24px; color: var(--be-text); }
.be-prose p { margin: 0 0 24px; }
.be-prose p:last-child { margin-bottom: 0; }
.be-prose h2, .be-prose h3 { color: var(--be-text); margin: 32px 0 12px; font-size: 20px; }
.be-prose a { text-decoration: underline; }
.be-prose img { border-radius: var(--be-radius); }

/* -----------------------------------------------------------------------------
   Buttons, pills, chips
   -------------------------------------------------------------------------- */
.be-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--be-gradient); color: var(--be-white);
  border: 1px solid transparent; border-radius: var(--be-radius);
  padding: 15px 31px; font-weight: 700; font-size: 18px; line-height: 18px;
  white-space: nowrap; transition: background .2s linear, transform .15s ease, box-shadow .2s;
  box-shadow: var(--be-shadow-btn);
}
.be-btn:hover { background: var(--be-gradient-rev); color: var(--be-white); transform: translateY(-1px); }
.be-btn:active { transform: translateY(0); }
.be-btn:disabled { opacity: .6; cursor: progress; }
.be-btn .be-icon { width: 20px; height: 20px; }
.be-btn .be-btn-arrow { filter: brightness(0) invert(1); width: 18px; }
.be-btn-outline { background: none; color: var(--be-accent); border-color: rgba(172,50,62,.32); box-shadow: none; }
.be-btn-outline:hover { background: var(--be-red-10); color: var(--be-accent); }
.be-btn-outline .be-btn-arrow { filter: none; }
.be-btn-small { font-size: 13px; padding: 9px 20px; min-width: 205px; border-radius: 6px; }
.be-btn-light { background: var(--be-white); color: var(--be-primary); box-shadow: none; }
.be-btn-light:hover { background: var(--be-red-10); color: var(--be-primary); }
.be-btn-light .be-btn-arrow { filter: none; }
.be-btn-block { width: 100%; }

.be-link-btn { background: none; border: none; padding: 0; color: var(--be-accent); font-weight: 700; font-size: 16px; line-height: 18px; }
.be-link-btn:hover { text-decoration: underline; }

.be-pill {
  display: inline-block; font-size: 14px; font-weight: 500; line-height: 24px;
  padding: 2px 16px; border-radius: 40px; background: var(--be-red-10); color: var(--be-primary); margin: 0;
}

.be-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.be-chip {
  display: inline-flex; align-items: center; border: 1.5px solid rgba(82,82,82,.48); border-radius: 20px;
  padding: 6.5px 14px; font-size: 14px; font-weight: 500; line-height: 16px; color: var(--be-text);
  transition: all .15s linear; background: var(--be-white);
}
.be-chip:hover { border-color: var(--be-accent); color: var(--be-accent); }
.be-chip.is-active { background: var(--be-accent); border-color: var(--be-accent); color: var(--be-white); }
.be-chips-small .be-chip { padding: 4px 10px; font-size: 12px; }

/* Stars */
.be-stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.be-stars .be-star { width: 14px; height: 14px; }
.be-stars-sm .be-star { width: 12px; height: 12px; }
.be-stars-lg .be-star { width: 20px; height: 20px; }

/* -----------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.be-header {
  position: sticky; top: 0; z-index: 99; background: var(--be-white);
  box-shadow: 0 1px 4px 0 rgba(50,50,50,.15); transition: box-shadow .3s, height .3s;
}
.be-header-inner { height: var(--be-header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.be-logo { display: inline-flex; color: var(--be-primary); height: 32px; }
.be-logo-svg { height: 32px; width: auto; fill: currentColor; }
.be-logo-img { height: 40px; width: auto; }
.be-nav { display: flex; align-items: center; gap: 40px; }
.be-header-cta { display: none; }
.be-cta-list { display: flex; align-items: center; gap: 20px; margin: 0; }
.be-cta-list a { font-family: var(--be-font-nav); color: var(--be-primary); font-size: 17px; font-weight: 500; transition: color .3s; }
.be-cta-list a:hover { color: var(--be-dark); }
.be-cta-list .be-cta-partner a,
.be-cta-list li:first-child a { border: 2px solid var(--be-primary); border-radius: 6px; padding: 8px 16px; }
.be-cta-list .be-cta-partner a:hover,
.be-cta-list li:first-child a:hover { background: var(--be-primary); color: var(--be-white); }

.be-burger { position: relative; z-index: 101; width: 40px; height: 32px; background: none; border: 0; padding: 0; display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.be-burger span { display: block; width: 33px; height: 4px; border-radius: 3px; background: var(--be-primary); transition: transform .4s cubic-bezier(.77,.2,.05,1), opacity .3s, background .3s; transform-origin: center; }
.be-burger.is-open span { background: var(--be-white); }
.be-burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.be-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.be-burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.be-menu {
  position: fixed; top: 0; right: 0; height: 100vh; width: 100vw; max-width: 520px;
  background: var(--be-primary); color: var(--be-white); z-index: 100;
  transform: translateX(100%); transition: transform .45s cubic-bezier(.77,.2,.05,1);
  overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,.2);
}
.be-menu.is-open { transform: none; }
.be-menu-inner { padding: 120px 50px 50px; display: flex; flex-direction: column; gap: 40px; min-height: 100%; }
.be-menu-list li { padding: 12px 0; font-size: 22px; font-family: var(--be-font-nav); }
.be-menu-list li:first-child { padding-top: 0; }
.be-menu-list a { color: var(--be-white); transition: color .3s; }
.be-menu-list a:hover { color: var(--be-dark); }
.be-menu-about { border-top: 1px solid rgba(255,255,255,.25); padding-top: 24px; font-size: 14px; line-height: 20px; color: rgba(255,255,255,.9); }
.be-menu-about ul li { padding: 4px 0; }
.be-menu-about a { color: var(--be-white); font-weight: 700; }
.be-menu-backdrop { position: fixed; inset: 0; background: rgba(38,38,38,.4); z-index: 99; opacity: 0; pointer-events: none; transition: opacity .3s; }
body.be-menu-open .be-menu-backdrop { opacity: 1; pointer-events: auto; }
body.be-menu-open { overflow: hidden; }

/* -----------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.be-homepage > section:first-child { margin-top: 0; }
.be-hero { padding: 30px 0 0; }
.be-hero-content { display: flex; gap: 34px; align-items: stretch; }
.be-hero-left { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; flex-shrink: 0; max-width: 520px; width: 100%; }
.be-hero-title { font-family: var(--be-font-display); font-size: 40px; font-weight: 700; line-height: 1.3; margin: 0; color: var(--be-dark); }
.be-hero-lead { font-size: 16px; line-height: 24px; color: var(--be-text-2); margin: 0; }
.be-hero-right { flex: 1 1 auto; min-width: 0; position: relative; padding: 41px 40px 46px 76px; background: url("../img/hero-slider-bg.svg") no-repeat center / contain; }
.be-hero-quick { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.be-hero-quick-label { font-size: 13px; font-weight: 700; color: var(--be-muted); margin-right: 4px; }
.be-hero-filter { margin-top: 24px; position: relative; z-index: 2; }

/* Filter form */
.be-filter {
  width: 100%; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end;
  background: var(--be-white); border: 1px solid var(--be-grey); border-radius: var(--be-radius-lg);
  padding: 16px; box-shadow: var(--be-shadow);
}
.be-filter-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.be-filter-label { font-size: 12px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--be-muted); padding-left: 2px; }
.be-filter-control { position: relative; display: flex; align-items: center; }
.be-filter-control > .be-icon { position: absolute; left: 12px; width: 20px; height: 20px; pointer-events: none; opacity: .85; }
.be-filter-control .be-filter-caret { left: auto; right: 12px; width: 14px; height: 14px; }
.be-filter-control select {
  width: 100%; appearance: none; -webkit-appearance: none; border: 1px solid var(--be-border); border-radius: var(--be-radius);
  background: var(--be-white); padding: 14px 36px 14px 42px; font-size: 15px; font-weight: 500; color: var(--be-dark); cursor: pointer;
  text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
}
.be-filter-control select:hover { border-color: var(--be-accent); }
.be-filter-submit { padding: 15px 22px; font-size: 16px; }
.be-filter-compact { grid-template-columns: 1fr 1fr 1fr auto; padding: 12px; box-shadow: none; border-radius: var(--be-radius); }

/* Hero slider */
.be-hero-slider { position: relative; }
.be-hero-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  border-radius: var(--be-radius-lg); scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.be-hero-track::-webkit-scrollbar { display: none; }
.be-hero-slide {
  flex: 0 0 100%; position: relative; padding-top: 56%; scroll-snap-align: start;
  background: var(--be-grey) center / cover no-repeat;
}
/* Bottom glass bar with name + CTA */
.be-hero-slide-content {
  position: absolute; left: 0; right: 0; bottom: 0; min-height: 96px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 40px;
  color: var(--be-white);
}
.be-hero-slide-content::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(20,20,20,.28); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.18);
}
.be-hero-slide-text, .be-hero-slide-actions { position: relative; z-index: 2; margin: 0; }
.be-hero-slide-text { padding-bottom: 4px; min-width: 0; }
.be-hero-slide-title { font-family: var(--be-font-display); font-size: 28px; font-weight: 700; line-height: 42px; margin: 0; color: var(--be-white); text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.be-hero-slide-name { font-size: 19px; font-weight: 400; line-height: 22px; margin: 0; color: var(--be-white); }
.be-hero-slide-actions .be-btn .be-icon { filter: brightness(0) invert(1); }

.be-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--be-border); background: var(--be-white);
  display: flex; align-items: center; justify-content: center; padding: 0; box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transition: opacity .2s;
}
.be-slider-btn svg { width: 16px; height: 16px; }
.be-slider-prev { left: -19px; } .be-slider-prev svg { transform: rotate(90deg); }
.be-slider-next { right: -19px; } .be-slider-next svg { transform: rotate(-90deg); }
.be-slider-btn:disabled { opacity: 0; pointer-events: none; }
.be-slider-dots { position: absolute; left: 0; right: 0; bottom: -22px; display: flex; justify-content: center; gap: 6px; }
.be-slider-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: var(--be-border); transition: all .2s; }
.be-slider-dots button.is-active { background: var(--be-accent); width: 20px; border-radius: 4px; }

/* -----------------------------------------------------------------------------
   Artist tabs / grid / cards
   -------------------------------------------------------------------------- */
.be-artist-tabs { margin-top: 120px; }
.be-loop-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 40px; }
.be-loop-sub { margin: 0; color: var(--be-muted); font-size: 14px; }
.be-tabs { display: flex; flex-direction: column; gap: 40px; }
.be-tabs-control { display: flex; justify-content: center; gap: 16px; position: relative; flex-wrap: wrap; }
.be-tabs-hint {
  position: absolute; bottom: calc(100% + 4px); left: calc(50% - 300px); pointer-events: none;
  display: flex; align-items: flex-start; gap: 2px; color: var(--be-primary);
  font-family: "Caveat", "Poppins", cursive; font-weight: 700; font-size: 32px; line-height: 1; transform: rotate(-8deg);
}
.be-tabs-hint svg { margin-top: 10px; }
.be-tab { background: none; border: 0; border-bottom: 2px solid transparent; padding: 0 0 4px; font-size: 18px; line-height: 24px; color: var(--be-muted); transition: color .2s; }
.be-tab:hover { color: var(--be-dark); }
.be-tab.is-active { color: var(--be-dark); border-color: var(--be-accent); }
.be-tab-panel { display: none; }
.be-tab-panel.is-active { display: block; animation: be-fade .3s ease; }
@keyframes be-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.be-loop { display: flex; flex-direction: column; align-items: center; gap: 50px; }
.be-loop-actions { display: flex; gap: 12px; }
.be-loop:not(.show-all) .be-grid > .be-card:nth-child(n+5) { display: none; }
.be-loop.show-2:not(.show-all) .be-grid > .be-card:nth-child(-n+8) { display: block; }
.be-loop.show-3:not(.show-all) .be-grid > .be-card:nth-child(-n+12) { display: block; }
.be-empty { grid-column: 1 / -1; color: var(--be-muted); text-align: center; padding: 40px 0; }

.be-grid { display: grid; gap: 32px; width: 100%; }
.be-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.be-card { display: block; color: inherit; min-width: 0; }
.be-card-image { position: relative; overflow: hidden; padding-top: 100%; border-radius: var(--be-radius); background: var(--be-grey); }
.be-card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.be-card:hover .be-card-image img { transform: scale(1.04); }
.be-card-badge {
  position: absolute; left: 12px; top: 12px; z-index: 2; background: rgba(255,255,255,.92); color: var(--be-accent);
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(4px);
}
.be-card-content { display: flex; flex-direction: column; gap: 4px; padding: 8px 8px 0; }
.be-card-name { font-family: var(--be-font-display); font-size: 16px; font-weight: 700; line-height: 24px; color: var(--be-accent); margin: 0; }
.be-card-subtitle { font-size: 14px; font-weight: 700; line-height: 18px; color: var(--be-dark); margin: 0 0 4px; }
.be-card-description {
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 14px; line-height: 18px; color: var(--be-text); margin: 0;
}

/* -----------------------------------------------------------------------------
   USP strip
   -------------------------------------------------------------------------- */
.be-usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.be-usp-item { position: relative; background: var(--be-grey-2); border: 1px solid var(--be-grey); border-radius: var(--be-radius); padding: 32px 28px 28px; transition: box-shadow .2s, transform .2s; }
.be-usp-item:hover { box-shadow: var(--be-shadow); transform: translateY(-2px); }
.be-usp-step { position: absolute; right: 20px; top: 16px; font-family: var(--be-font-display); font-weight: 800; font-size: 40px; line-height: 1; color: var(--be-red-10); }
.be-usp-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--be-red-10); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.be-usp-icon .be-icon { width: 24px; height: 24px; }
.be-usp-item h3 { font-size: 18px; margin-bottom: 8px; }
.be-usp-item p { margin: 0; font-size: 15px; line-height: 22px; color: var(--be-text-2); }

/* -----------------------------------------------------------------------------
   Info banner
   -------------------------------------------------------------------------- */
.be-info-banner-content { background: var(--be-primary); padding: 64px; border-radius: var(--be-radius); display: flex; gap: 40px; justify-content: space-between; color: var(--be-white); }
.be-info-banner-left { max-width: 260px; display: flex; flex-direction: column; gap: 24px; }
.be-info-banner-subtitle { font-size: 24px; line-height: 28px; margin: 0; }
.be-info-banner-logo { color: var(--be-white); }
.be-info-banner-logo .be-logo-svg { height: 28px; }
.be-info-banner-right { font-size: 16px; line-height: 24px; max-width: 854px; }
.be-info-banner-right p:last-child { margin-bottom: 0; }

/* -----------------------------------------------------------------------------
   Partners marquee
   -------------------------------------------------------------------------- */
.be-partners-title { text-align: center; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--be-muted); margin-bottom: 24px; }
.be-partners-track { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.be-partners-row { display: flex; gap: 64px; width: max-content; animation: be-marquee 40s linear infinite; }
.be-partners-track:hover .be-partners-row { animation-play-state: paused; }
.be-partner-logo { font-family: var(--be-font-display); font-weight: 800; font-size: 26px; color: #B5B5B5; white-space: nowrap; letter-spacing: -.01em; }
@keyframes be-marquee { to { transform: translateX(-50%); } }

/* -----------------------------------------------------------------------------
   Archive
   -------------------------------------------------------------------------- */
.be-archive-head { background: var(--be-grey-2); border-bottom: 1px solid var(--be-grey); padding: 24px 0 24px; }
.be-breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--be-muted); margin-bottom: 16px; }
.be-breadcrumb a { color: var(--be-muted); } .be-breadcrumb a:hover { color: var(--be-accent); }
.be-archive-title-row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.be-archive-title { font-size: 36px; font-weight: 700; }
.be-archive-count { margin: 0; color: var(--be-muted); }
.be-archive-head .be-chips { margin-top: 16px; }
.be-archive-body { margin-top: 40px; }
.be-empty-state { text-align: center; padding: 60px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.be-empty-state p { color: var(--be-text-2); max-width: 520px; }
.be-empty-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.be-pagination { margin-top: 48px; }
.be-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.be-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--be-border); border-radius: 50%; color: var(--be-text); font-weight: 500; }
.be-pagination .page-numbers.current { background: var(--be-accent); border-color: var(--be-accent); color: var(--be-white); }
.be-pagination .page-numbers:hover:not(.current) { border-color: var(--be-accent); color: var(--be-accent); }
.be-pagination .prev svg { transform: rotate(90deg); } .be-pagination .next svg { transform: rotate(-90deg); }

/* -----------------------------------------------------------------------------
   Single artist
   -------------------------------------------------------------------------- */
.be-single { margin: 30px 0 120px; }
.be-banner-frame { position: relative; padding-top: 34%; border-radius: var(--be-radius); overflow: hidden; background: var(--be-grey); }
.be-banner-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.be-single-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; margin-top: 24px; }
.be-single-main { position: relative; z-index: 1; min-width: 0; }

.be-profile { display: flex; gap: 24px; align-items: center; }
.be-profile-img { width: 184px; height: 184px; flex-shrink: 0; border-radius: 50%; border: 4px solid var(--be-white); box-shadow: var(--be-shadow); overflow: hidden; background: var(--be-grey); }
.be-profile-img img { width: 100%; height: 100%; object-fit: cover; }
.be-profile-img-sm { width: 120px; height: 120px; }
.be-profile-data { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.be-profile-name { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 4px; }
.be-profile-name h1 { font-size: 32px; font-weight: 700; line-height: 1.1; }
.be-social { display: inline-flex; }
.be-social .be-icon { width: 24px; height: 24px; }
.be-rating-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.be-rating-label { color: var(--be-muted); line-height: 18px; margin: 0; }
.be-reviews-link { font-weight: 700; font-size: 14px; line-height: 18px; color: var(--be-accent); }
.be-profile-contact { display: flex; flex-direction: column; gap: 2px; }
.be-profile-contact a { color: var(--be-muted); font-size: 14px; line-height: 18px; }
.be-profile-contact a:hover { color: var(--be-accent); }

.be-anchors { margin: 40px 0 16px; display: flex; gap: 48px; flex-wrap: wrap; }
.be-anchors a { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 16px; line-height: 24px; color: var(--be-accent); }
.be-anchors .be-icon { width: 20px; height: 20px; }

/* Read more */
.be-dynamic:not(.is-open) > .be-description,
.be-dynamic:not(.is-open) > .be-review-body { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.be-dynamic[data-lines="4"]:not(.is-open) > .be-review-body { -webkit-line-clamp: 4; }
.be-actions { display: inline-flex; align-items: center; gap: 4px; background: none; border: 0; padding: 0; margin: 24px 0 0; font-weight: 700; font-size: 16px; line-height: 18px; color: var(--be-accent); }
.be-actions svg { width: 12px; height: 12px; }
.be-show-less svg { transform: rotate(180deg); }
.be-dynamic:not(.is-open) .be-show-less { display: none; }
.be-dynamic.is-open .be-show-more { display: none; }
.be-dynamic.no-overflow .be-actions { display: none; }

.be-known-from { display: flex; flex-direction: column; gap: 24px; }
.be-known-from ul li { display: flex; gap: 16px; align-items: center; border-bottom: 1px solid var(--be-line); padding: 12px 0; font-size: 16px; line-height: 24px; }

/* Videos band */
.be-videos { position: relative; padding: 120px 0 85px; margin: 80px 0 0; }
.be-videos::after { content: ''; position: absolute; top: 0; left: -25vw; width: 125vw; height: 100%; background: var(--be-gradient); z-index: 1; border-radius: 0 var(--be-radius) var(--be-radius) 0; }
.be-videos-label { position: absolute; top: 40px; left: 0; z-index: 2; margin: 0; font-family: var(--be-font-display); font-weight: 800; font-size: 56px; line-height: 1; color: rgba(255,255,255,.9); letter-spacing: -.02em; }
.be-videos-list { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.be-video { position: relative; padding-top: 60%; overflow: hidden; border-radius: var(--be-radius); background: #000; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.be-video img, .be-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.be-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; border: 0; background: rgba(255,255,255,.95); color: var(--be-accent); display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.be-video:hover .be-play { transform: translate(-50%,-50%) scale(1.08); }

/* Sidebar mini form */
.be-single-sidebar { position: relative; z-index: 2; }
.be-mini-form-frame { position: sticky; top: calc(var(--be-header-h) - 20px); margin-top: 24px; border-radius: var(--be-radius); background: var(--be-gradient); padding: 4px; box-shadow: var(--be-shadow); }
.be-mini-form { background: var(--be-white); border: 1px solid var(--be-grey); border-radius: 5px; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.be-form-title { font-family: var(--be-font-display); font-weight: 700; font-size: 24px; line-height: 1; margin: 0 0 8px; }
.be-mini { display: flex; flex-direction: column; gap: 16px; }
.be-field { display: flex; flex-direction: column; gap: 4px; }
.be-label { font-weight: 700; font-size: 14px; line-height: 18px; color: var(--be-text); }
.be-label span { color: var(--be-accent); }
.be-field input, .be-field textarea, .be-field select {
  width: 100%; border: 1px solid var(--be-border); border-radius: var(--be-radius); padding: 16px 12px;
  font-size: 16px; line-height: 18px; color: var(--be-dark); background: var(--be-white); outline: none; transition: border-color .15s, box-shadow .15s;
}
.be-field input:focus, .be-field textarea:focus, .be-field select:focus { border-color: var(--be-accent); box-shadow: 0 0 0 3px rgba(186,48,61,.12); }
.be-field textarea { resize: vertical; min-height: 120px; }
.be-input-icon input { padding-left: 44px; background-repeat: no-repeat; background-position: 12px center; background-size: 20px; }
.be-input-guests input { background-image: url("../img/guests.svg"); }
.be-input-date input { background-image: url("../img/calendar.svg"); }
.be-input-date input::-webkit-calendar-picker-indicator { opacity: .6; }
.be-mini .be-btn { padding: 19px; font-size: 15px; }
.be-notice { font-size: 12px; line-height: 15px; text-align: center; color: var(--be-muted); margin: 0 auto; max-width: 240px; }

/* Reviews */
.be-reviews { margin: 40px 0 80px; padding-top: 40px; border-top: 1px solid var(--be-grey); }
.be-reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.be-reviews-summary { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--be-text-2); }
.be-reviews-list { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 48px; row-gap: 24px; margin-bottom: 24px; }
.be-review { display: flex; flex-direction: column; gap: 16px; }
.be-review-head { display: flex; flex-direction: column; gap: 4px; }
.be-review-name { font-family: var(--be-font-display); font-weight: 700; font-size: 16px; line-height: 1; margin: 0; }
.be-review-company { font-family: var(--be-font-display); font-size: 16px; line-height: 1; margin: 0; }
.be-review-date { font-size: 14px; line-height: 18px; color: var(--be-muted); margin: 0; text-transform: capitalize; }
.be-review-body { font-size: 16px; line-height: 24px; color: var(--be-text); margin: 0; }
.be-review .be-actions { margin-top: 16px; }

/* Modal */
.be-modal { position: fixed; inset: 0; z-index: 200; background: rgba(38,38,38,.55); display: flex; align-items: center; justify-content: center; padding: 24px; }
.be-modal-dialog { background: var(--be-white); border-radius: var(--be-radius); width: 100%; max-width: 850px; max-height: 85vh; display: flex; flex-direction: column; padding: 32px; gap: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.3); animation: be-fade .25s ease; }
.be-modal-head { display: flex; align-items: center; justify-content: space-between; }
.be-modal-close { background: none; border: 0; padding: 4px; }
.be-modal-body { overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.be-modal-review { display: grid; grid-template-columns: 1fr 4fr; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--be-grey); }
.be-modal-review:last-child { border-bottom: 0; }
.be-modal-review .be-review-name, .be-modal-review .be-review-company { font-size: 14px; }
.be-modal-review .be-review-date { font-size: 12px; line-height: 15px; }
.be-modal-review .be-review-body { font-size: 14px; line-height: 18px; }

/* Booking section */
.be-booking { margin: 80px 0; padding: 60px 0; background: var(--be-grey); }
.be-booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.be-booking-content { display: flex; flex-direction: column; gap: 24px; }
.be-booking-title { display: flex; gap: 8px; align-items: center; font-size: 24px; line-height: 1; }
.be-booking-content ul { display: flex; flex-direction: column; gap: 8px; }
.be-booking-content ul li { display: flex; gap: 16px; align-items: center; font-size: 16px; line-height: 24px; }
.be-booking-bottom { margin: 0; max-width: 380px; line-height: 24px; }
.be-booking-bottom a { color: var(--be-accent); font-weight: 700; }
.be-booking-profile { display: flex; align-items: center; gap: 16px; margin-top: 16px; padding: 16px; background: var(--be-white); border-radius: var(--be-radius); max-width: 380px; }
.be-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--be-border); }
.be-avatar img { width: 100%; height: 100%; object-fit: cover; }
.be-booking-profile-name { margin: 0 0 4px; font-family: var(--be-font-display); font-weight: 700; }

.be-form { display: flex; flex-direction: column; gap: 16px; }
.be-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.be-field-full { grid-column: 1 / -1; }
.be-select { position: relative; }
.be-select select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.be-select-caret { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; pointer-events: none; }
.be-form-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.be-form-footer .be-btn { padding: 17px 32px; font-size: 15px; min-width: 240px; }
.be-form-note { margin: 0; font-size: 12px; line-height: 16px; color: var(--be-muted); max-width: 260px; }
.be-msg { margin: 0; font-size: 15px; line-height: 22px; }
.be-msg:empty { display: none; }
.abv4-msg-success { padding: 16px 20px; border-radius: var(--be-radius); background: #E9F7EC; color: #1E6B34; border: 1px solid #BFE4C8; }
.abv4-msg-error { padding: 16px 20px; border-radius: var(--be-radius); background: var(--be-red-10); color: var(--be-accent); border: 1px solid #F3C3C8; }

/* Gallery */
.be-gallery { margin: 80px 0; }
.be-gallery-grid { display: grid; grid-template-columns: 2fr 2fr 1fr 2fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.be-gallery-item { position: relative; padding-top: 120%; grid-row: 1 / span 2; overflow: hidden; display: block; background: var(--be-grey); }
.be-gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.be-gallery-item:hover img { transform: scale(1.03); }
.be-gallery-item:first-child { border-radius: var(--be-radius) 0 0 var(--be-radius); }
.be-gallery-item:last-child { border-radius: 0 var(--be-radius) var(--be-radius) 0; }
.be-gallery-item:nth-child(3) { grid-row: 1; padding-top: 0; }
.be-gallery-item:nth-child(4) { grid-row: 2; padding-top: 0; }
.be-gallery-item:nth-child(3), .be-gallery-item:nth-child(4) { grid-column: 3; min-height: 100%; }

/* Lightbox (plugin JS toggles .open) */
.be-lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.9); display: none; align-items: center; justify-content: center; flex-direction: column; gap: 12px; padding: 40px; }
.be-lightbox.open { display: flex; }
.be-lightbox img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--be-radius); }
.be-lightbox p { color: var(--be-white); margin: 0; }
.be-lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: 0; color: var(--be-white); font-size: 40px; line-height: 1; }

/* Contact box */
.be-contact { margin: 80px 0; }
.be-contact-box { background: var(--be-red-15); border-radius: var(--be-radius); display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 32px 120px; }
.be-contact-left { display: flex; flex-direction: column; gap: 16px; }
.be-contact-name { font-size: 24px; line-height: 1; color: var(--be-primary); margin: 0; }
.be-contact-name span { font-family: var(--be-font-display); font-weight: 700; }
.be-contact-info { display: flex; flex-direction: column; gap: 8px; }
.be-contact-info a { display: flex; gap: 8px; align-items: center; color: var(--be-primary); font-size: 16px; line-height: 24px; }

/* Recommended carousel */
.be-recommended { margin: 120px 0 40px; padding-bottom: 40px; border-bottom: 1px solid var(--be-grey); }
.be-recommended-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.be-slider-control { display: flex; align-items: center; gap: 16px; }
.be-round-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--be-border); background: none; display: flex; align-items: center; justify-content: center; padding: 0; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.be-round-btn:disabled { opacity: .4; cursor: default; }
.be-round-btn[data-be-prev] svg { transform: rotate(90deg); }
.be-round-btn[data-be-next] svg { transform: rotate(-90deg); }
.be-carousel-pages { font-size: 16px; color: var(--be-text); min-width: 40px; text-align: center; }
.be-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.be-carousel::-webkit-scrollbar { display: none; }
.be-rec-item { flex: 0 0 calc((100% - 4 * 24px) / 5); scroll-snap-align: start; display: flex; flex-direction: column; gap: 8px; color: inherit; }
.be-rec-image { position: relative; padding-top: 100%; overflow: hidden; border-radius: var(--be-radius); background: var(--be-grey); }
.be-rec-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.be-rec-item:hover .be-rec-image img { transform: scale(1.04); }
.be-rec-content { display: flex; flex-direction: column; gap: 4px; }
.be-rec-name { margin: 0; font-family: var(--be-font-display); font-weight: 700; font-size: 16px; line-height: 1; color: var(--be-accent); }
.be-rec-town { margin: 0; font-weight: 700; font-size: 14px; line-height: 18px; color: var(--be-dark); }

/* Sticky mobile CTA */
.be-sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.95); backdrop-filter: blur(6px); box-shadow: 0 -4px 20px rgba(0,0,0,.08); }
.be-sticky-cta .be-btn { font-size: 15px; padding: 15px; }

/* -----------------------------------------------------------------------------
   Generic page
   -------------------------------------------------------------------------- */
.be-page { padding: 60px 0 120px; }
.be-page-title { font-size: 36px; margin-bottom: 24px; }
.be-entry { padding: 24px 0; border-bottom: 1px solid var(--be-grey); }
.be-entry-title { font-size: 22px; }
.be-searchform { display: flex; gap: 8px; }
.be-searchform input { flex: 1; border: 1px solid var(--be-border); border-radius: var(--be-radius); padding: 12px 16px; }

/* -----------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.be-footer { background: var(--be-white); padding: 64px 0 40px; border-top: 1px solid var(--be-grey); margin-top: 40px; }
.be-footer-grid { display: grid; grid-template-columns: 5fr 4fr 3fr; gap: 40px; }
.be-footer-logo { display: inline-flex; color: var(--be-primary); margin-bottom: 8px; }
.be-footer-logo .be-logo-svg { height: 28px; }
.be-footer h3 { color: var(--be-primary); font-family: var(--be-font-nav); font-size: 1.3em; font-weight: 700; margin: 1.1em 0 1em; }
.be-footer h3::after { content: ''; display: block; width: 50px; border-bottom: 3px solid var(--be-primary); margin-top: 6px; }
.be-footer-col > h3:first-child { margin-top: 0; }
.be-footer-list li { padding: 4px 0; font-family: var(--be-font-nav); font-size: 15px; }
.be-footer-list a { color: var(--be-dark); transition: color .2s; }
.be-footer-list a:hover { color: var(--be-primary); }
.be-copyright { margin-top: 40px; font-size: .9em; color: var(--be-text-2); font-family: var(--be-font-nav); }

/* -----------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .be-header-cta { display: block; }
}
@media (max-width: 1200px) {
  .be-tabs-hint { display: none; }
  .be-grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .be-hero-left { max-width: 460px; }
  .be-hero-title { font-size: 34px; }
  .be-rec-item { flex-basis: calc((100% - 3 * 24px) / 4); }
  .be-contact-box { padding: 32px 60px; }
}
@media (max-width: 992px) {
  :root { --be-header-h: 88px; }
  .be-hero-content { flex-direction: column; }
  .be-hero-left { max-width: none; }
  .be-hero-right { padding: 0; background: none; margin-top: 24px; }
  .be-slider-prev { left: -10px; } .be-slider-next { right: -10px; }
  .be-single-grid { grid-template-columns: 1fr; }
  .be-single-sidebar { display: none; }
  .be-booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .be-footer-grid { grid-template-columns: 1fr 1fr; }
  .be-usp-grid { grid-template-columns: 1fr; }
  .be-videos-label { font-size: 40px; }
  .be-rec-item { flex-basis: calc((100% - 2 * 24px) / 3); }
  .be-menu-inner { padding-top: 100px; }
}
@media (max-width: 768px) {
  .be-section { margin: 40px 0; }
  .be-artist-tabs { margin-top: 64px; }
  .be-grid { gap: 20px; }
  .be-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .be-hero-title { font-size: 30px; }
  .be-hero-slide { padding-top: 120%; }
  .be-hero-slide-content { flex-direction: column; align-items: stretch; gap: 12px; }
  .be-hero-slide-content::before { height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%); backdrop-filter: none; }
  .be-hero-slide-content .be-hero-slide-text { padding: 0; }
  .be-hero-slide-title { font-size: 22px; line-height: 30px; }
  .be-filter { grid-template-columns: 1fr; padding: 12px; }
  .be-filter-submit { width: 100%; }
  .be-loop-head { flex-direction: column; gap: 4px; }
  .be-info-banner-content { padding: 40px; flex-direction: column; }
  .be-archive-title { font-size: 28px; }
  .be-profile { flex-direction: column; text-align: center; }
  .be-profile-img { width: 140px; height: 140px; }
  .be-profile-name { justify-content: center; }
  .be-profile-name h1 { width: 100%; font-size: 28px; }
  .be-rating-row, .be-chips-small { justify-content: center; }
  .be-anchors { flex-direction: column; gap: 16px; }
  .be-videos { padding: 90px 0 40px; }
  .be-videos::after { left: -15px; width: calc(100% + 30px); border-radius: var(--be-radius); }
  .be-videos-label { font-size: 30px; top: 28px; left: 16px; }
  .be-videos-list { grid-template-columns: 1fr; }
  .be-reviews-list { grid-template-columns: 1fr; }
  .be-form-grid { grid-template-columns: 1fr; }
  .be-form-footer .be-btn { width: 100%; }
  .be-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .be-gallery-item, .be-gallery-item:nth-child(3), .be-gallery-item:nth-child(4) { grid-row: auto; grid-column: auto; padding-top: 100%; border-radius: var(--be-radius); }
  .be-contact-box { padding: 24px; flex-direction: column-reverse; text-align: center; }
  .be-contact-info { align-items: center; }
  .be-recommended-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .be-slider-control { display: none; }
  .be-rec-item { flex-basis: calc((100% - 24px) / 2); }
  .be-modal { padding: 8px; }
  .be-modal-dialog { padding: 20px; max-height: 92vh; }
  .be-modal-review { grid-template-columns: 1fr; }
  .be-sticky-cta { display: block; }
  .be-single { margin-bottom: 140px; }
  .be-footer-grid { grid-template-columns: 1fr; gap: 16px; }
  .be-menu { max-width: none; }
}
@media (max-width: 480px) {
  .be-info-banner-content { padding: 25px; }
  .be-hero-title { font-size: 26px; }
  .be-btn { font-size: 16px; padding: 13px 22px; }
  .be-loop-actions { flex-direction: column; width: 100%; }
  .be-loop-actions .be-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; scroll-behavior: auto !important; }
}
