/* Body & Face — adaptive front (no Elementor). Design tokens match live site. */
:root{
  --bg:#0b0b0c;
  --bg2:#141416;
  --card:#1a1a1e;
  --text:#f5f0e6;
  --muted:#c4bbb0;
  --gold:#cfa444;
  --gold2:#e0bc6a;
  --line:rgba(255,255,255,.1);
  --radius:14px;
  --max:1180px;
  --header-h:72px;
  --font:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body.bf-front{
  margin:0;font-family:var(--font);background:var(--bg);color:var(--text);
  line-height:1.55;text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%;height:auto}
a{color:var(--gold);text-decoration:none}
a:hover{color:var(--gold2)}
.bf-wrap{width:min(100% - 1.5rem,var(--max));margin-inline:auto}
.bf-skip{position:absolute;left:-999px;top:0}
.bf-skip:focus{left:1rem;top:1rem;z-index:999999;background:#fff;color:#000;padding:.5rem .75rem}

/* Header */
.bf-header{
  position:sticky;top:0;z-index:1000;
  min-height:var(--header-h);
  background:rgba(11,11,12,.10);
  backdrop-filter:blur(14px) saturate(1.1);
  -webkit-backdrop-filter:blur(14px) saturate(1.1);
  border-bottom:1px solid rgba(255,255,255,.03);
  transition:background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.bf-header.is-solid,
body.bf-nav-open .bf-header{
  background:rgba(11,11,12,.68);
  border-bottom-color:var(--line);
}
.bf-header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;min-height:var(--header-h);padding:.5rem 0;
}
.bf-logo{
  display:flex;align-items:center;gap:.65rem;color:var(--text);font-weight:700;
  position:relative;z-index:5;cursor:pointer;pointer-events:auto;
  text-decoration:none!important;flex-shrink:0;
}
.bf-logo:hover{color:var(--gold2)}
.bf-logo:hover .bf-logo-text, .bf-logo:hover span{color:var(--gold2)}
.bf-logo img{width:48px;height:48px;object-fit:cover;border-radius:50%;pointer-events:none}
.bf-logo span{color:var(--gold);pointer-events:none}
.bf-logo-text{pointer-events:none}

.bf-nav{display:flex;flex-wrap:wrap;align-items:center;gap:.35rem .85rem}
.bf-nav a{
  color:var(--text);font-size:.9rem;font-weight:600;opacity:.92;
  padding:.35rem .15rem;white-space:nowrap;
}
.bf-nav a:hover,.bf-nav a[aria-current="page"]{color:var(--gold)}
.bf-nav a.bf-cta,.bf-nav button.bf-cta,.bf-drawer button.bf-cta{
  background:var(--gold);color:#1a1208!important;border-radius:999px;
  padding:.55rem 1rem!important;opacity:1;border:0;cursor:pointer;font:inherit;font-weight:700;
  display:inline-flex;align-items:center;min-height:40px;
}
.bf-drawer button.bf-cta{width:100%;justify-content:center;margin-top:.5rem;min-height:48px}
.bf-burger{
  display:none;width:48px;height:48px;border:1px solid var(--line);
  border-radius:10px;background:transparent;cursor:pointer;padding:0;
  align-items:center;justify-content:center;flex-direction:column;gap:5px;
}
.bf-burger span{display:block;width:22px;height:2px;background:var(--gold)}

/* Language: mobile inline next to burger; PC = fixed bottom-right (design-switch.css) */
.bf-header-inner .tatjana-lang-inline{order:3;margin-left:.15rem}
.bf-burger{order:4}
.bf-lang-drawer{
  display:flex;flex-direction:column;gap:.35rem;margin-top:1.25rem;
  padding-top:1rem;border-top:1px solid var(--line);
}
.bf-lang-drawer a{
  display:flex;align-items:center;gap:.5rem;min-height:48px;padding:.65rem .85rem;
  border-radius:10px;border:1px solid var(--line);color:var(--text)!important;
  font-weight:700;font-size:.95rem;
}
.bf-lang-drawer a.is-active,
.bf-lang-drawer a[aria-current="true"]{
  border-color:var(--gold);color:var(--gold)!important;background:rgba(207,164,68,.1);
}

/* Mobile drawer */
.bf-drawer-bg{
  position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:1001;
  opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s;
}
.bf-drawer{
  position:fixed;top:0;right:0;width:min(100vw,400px);height:100%;
  height:100dvh;background:#0a0a0a;z-index:1002;
  transform:translateX(105%);transition:transform .28s ease;
  overflow-y:auto;padding:0 0 2rem;
}
body.bf-nav-open .bf-drawer-bg{opacity:1;visibility:visible}
body.bf-nav-open .bf-drawer{transform:translateX(0)}
body.bf-nav-open{overflow:hidden}
.bf-drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem 1.15rem;border-bottom:1px solid rgba(207,164,68,.25);
  position:sticky;top:0;background:#0a0a0a;
}
.bf-drawer-close{
  min-width:48px;min-height:48px;border:0;background:transparent;
  color:var(--gold);font-size:1.5rem;cursor:pointer;
}
.bf-drawer nav a{
  display:flex;align-items:center;min-height:56px;padding:1rem 1.35rem;
  font-size:1.2rem;font-weight:600;color:var(--text);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.bf-drawer nav a:hover,.bf-drawer nav a[aria-current="page"]{
  color:var(--gold);background:rgba(207,164,68,.08);
}

/* Hero */
.bf-hero{
  position:relative;min-height:min(92svh,900px);
  display:grid;align-items:end;
  background:var(--bg2) center/cover no-repeat;
}
.bf-hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.2) 0%,rgba(0,0,0,.55) 45%,rgba(0,0,0,.88) 100%);
}
.bf-hero-inner{position:relative;z-index:1;padding:4.5rem 0 3.25rem}
.bf-eyebrow{
  text-transform:uppercase;letter-spacing:.16em;font-size:.72rem;
  color:var(--gold);margin:0 0 .75rem;font-weight:700;
}
.bf-hero h1{
  margin:0 0 .85rem;font-size:clamp(1.75rem,5vw,3rem);
  line-height:1.15;font-weight:700;max-width:16ch;
}
.bf-hero .bf-lead{
  margin:0 0 1.5rem;max-width:40ch;color:var(--muted);
  font-size:clamp(1rem,2.2vw,1.2rem);
}
.bf-actions{display:flex;flex-wrap:wrap;gap:.75rem}
.bf-btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:.7rem 1.25rem;border-radius:999px;
  font-weight:700;font-size:.95rem;border:1px solid transparent;
  position:relative;overflow:hidden;
  transition:transform .2s ease, box-shadow .25s ease, filter .2s ease, background .2s ease;
}
.bf-btn-primary{
  background:linear-gradient(135deg,#e0bc6a 0%,#cfa444 45%,#a67c2a 100%);
  color:#1a1208!important;
  box-shadow:0 6px 20px rgba(207,164,68,.35),0 0 0 0 rgba(207,164,68,.4);
  animation:bf-btn-pulse 2.4s ease-in-out infinite;
}
.bf-btn-primary::after{
  content:"";position:absolute;top:0;left:-120%;width:55%;height:100%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.45),transparent);
  transform:skewX(-18deg);
  animation:bf-btn-shine 3.2s ease-in-out infinite;
  pointer-events:none;
}
.bf-btn-primary:hover{
  filter:brightness(1.08);color:#120c04!important;
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 12px 32px rgba(207,164,68,.5),0 0 0 4px rgba(207,164,68,.18);
  animation:none;
}
.bf-btn-primary:active{transform:translateY(0) scale(.98)}
.bf-btn-ghost{border-color:rgba(255,255,255,.28);color:var(--text);background:rgba(255,255,255,.04)}
.bf-btn-ghost:hover{background:rgba(255,255,255,.1);color:#fff;transform:translateY(-1px)}
@keyframes bf-btn-pulse{
  0%,100%{box-shadow:0 6px 20px rgba(207,164,68,.32),0 0 0 0 rgba(207,164,68,.35)}
  50%{box-shadow:0 8px 28px rgba(207,164,68,.5),0 0 0 10px rgba(207,164,68,0)}
}
@keyframes bf-btn-shine{
  0%,55%{left:-120%;opacity:0}
  60%{opacity:1}
  85%{left:140%;opacity:.85}
  100%{left:140%;opacity:0}
}
/* Service card “book” links look like mini CTAs */
a.bf-more,button.bf-more.bf-open-book{
  position:relative;display:inline-flex!important;align-items:center;justify-content:center;
  margin-top:.9rem!important;min-height:40px;padding:.45rem 1rem!important;
  border-radius:999px!important;border:0!important;
  background:linear-gradient(135deg,#e0bc6a,#cfa444)!important;
  color:#1a1208!important;font-weight:800!important;font-size:.88rem!important;
  box-shadow:0 4px 14px rgba(207,164,68,.3);
  animation:bf-btn-pulse 2.8s ease-in-out infinite;
  transition:transform .2s ease, box-shadow .25s ease, filter .2s ease;
  overflow:hidden;
}
a.bf-more:hover,button.bf-more.bf-open-book:hover{
  color:#120c04!important;filter:brightness(1.08);
  transform:translateY(-2px);box-shadow:0 8px 22px rgba(207,164,68,.45);
  animation:none;
}
.bf-nav button.bf-cta,.bf-drawer button.bf-cta{
  animation:bf-btn-pulse 2.6s ease-in-out infinite;
  transition:transform .2s ease, box-shadow .25s ease, filter .2s ease;
  box-shadow:0 4px 16px rgba(207,164,68,.3);
}
.bf-nav button.bf-cta:hover,.bf-drawer button.bf-cta:hover{
  transform:translateY(-1px) scale(1.03);filter:brightness(1.06);animation:none;
}
@media (prefers-reduced-motion:reduce){
  .bf-btn-primary,a.bf-more,button.bf-more.bf-open-book,
  .bf-nav button.bf-cta,.bf-drawer button.bf-cta{animation:none!important}
  .bf-btn-primary::after{display:none}
}

/* Sections */
.bf-section{padding:clamp(2.5rem,5vw,3.75rem) 0}
.bf-section-alt{background:var(--bg2)}
.bf-head{margin:0 0 1.5rem}
.bf-head h2{margin:0 0 .45rem;font-size:clamp(1.4rem,3.2vw,2rem);line-height:1.2}
.bf-head p{margin:0;color:var(--muted);max-width:52ch}

/* Responsive columns: phone 1 · tablet 2 · PC 3 */
.bf-grid-4,.bf-grid-3,.bf-grid-2{
  display:grid;gap:1rem;
  grid-template-columns:1fr;
}
@media (min-width:768px){
  .bf-grid-2,.bf-grid-3,.bf-grid-4{grid-template-columns:repeat(2,1fr);gap:1.1rem}
}
@media (min-width:1024px){
  .bf-grid-3{grid-template-columns:repeat(3,1fr)}
  .bf-grid-4{grid-template-columns:repeat(4,1fr)}
  .bf-grid-2{grid-template-columns:repeat(2,1fr)}
}

.bf-card{
  background:var(--card);border:1px solid var(--line);
  border-radius:var(--radius);padding:1.15rem 1.2rem;height:100%;
}
.bf-card h3{margin:.1rem 0 .5rem;font-size:1.05rem;line-height:1.3}
.bf-card p{margin:0;color:var(--muted);font-size:.95rem}
.bf-card ul{list-style:none;margin:.75rem 0 0;padding:0}
.bf-card li{
  display:flex;justify-content:space-between;gap:1rem;
  padding:.4rem 0;border-top:1px solid var(--line);font-size:.92rem;
}
.bf-card li:first-child{border-top:0}
.bf-card .bf-more{display:inline-block;margin-top:.9rem;font-weight:700;font-size:.9rem}

.bf-split{
  display:grid;grid-template-columns:1.05fr .95fr;gap:1.5rem;align-items:center;
}
.bf-split img{
  width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius);
  background:#222;
}

.bf-stats{display:grid;grid-template-columns:1fr;gap:1rem}
@media (min-width:768px){.bf-stats{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.bf-stats{grid-template-columns:repeat(4,1fr)}}
.bf-stat{
  text-align:center;padding:1.2rem .75rem;border:1px solid var(--line);
  border-radius:var(--radius);background:rgba(255,255,255,.02);
}
.bf-stat strong{display:block;font-size:1.65rem;color:var(--gold);margin-bottom:.25rem}
.bf-stat span{color:var(--muted);font-size:.88rem}

.bf-quote{font-size:.98rem;color:var(--muted);display:flex;flex-direction:column;height:100%}
.bf-quote-top{display:flex;align-items:center;justify-content:space-between;gap:.75rem;margin-bottom:.75rem}
.bf-quote-avatar{
  width:42px;height:42px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  font-weight:800;font-size:1rem;color:#1a1408;background:linear-gradient(135deg,var(--gold),var(--gold2));
  border:1px solid rgba(207,164,68,.45);flex-shrink:0;
}
.bf-stars{color:var(--gold);letter-spacing:.06em;font-size:1.05rem;line-height:1}
.bf-stars-sm{font-size:.95rem}
.bf-quote blockquote{margin:0;flex:1}
.bf-quote blockquote p{margin:0;line-height:1.55}
.bf-quote footer{margin-top:1rem;color:var(--text);font-weight:700;font-style:normal}
.bf-quote-name{display:block}
.bf-quote cite{display:block;font-style:normal;color:var(--muted);font-weight:400;font-size:.85rem;margin-top:.2rem}
.bf-head-sub{margin:.35rem auto 0;max-width:52ch;color:var(--muted);font-size:.98rem;text-align:center}
.bf-rev-score{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.5rem .75rem;
  margin:1rem auto 0;padding:.65rem 1rem;border:1px solid rgba(207,164,68,.28);
  border-radius:999px;background:rgba(207,164,68,.06);max-width:max-content;
}
.bf-rev-score strong{color:var(--gold);font-size:1.15rem}
.bf-rev-score-meta{color:var(--muted);font-size:.85rem;max-width:36ch}
.bf-rev-grid{align-items:stretch}
.bf-rev-cta{margin-top:1.75rem;text-align:center}
.bf-rev-cta-hint{margin:.65rem 0 0;color:var(--muted);font-size:.88rem}
.bf-btn-google{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  min-height:48px;padding:.75rem 1.25rem;border-radius:999px;font-weight:700;font-size:.95rem;
  color:#1a1408 !important;background:linear-gradient(180deg,#fff 0%,#f3f3f3 100%);
  border:1px solid rgba(255,255,255,.55);box-shadow:0 6px 20px rgba(0,0,0,.22);
  transition:transform .15s ease, box-shadow .15s ease;
}
.bf-btn-google:hover{transform:translateY(-1px);box-shadow:0 10px 28px rgba(0,0,0,.28);color:#000 !important}
.bf-google-ico{flex-shrink:0}
.bf-faq{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:.65rem}
.bf-faq-item{
  border:1px solid var(--line);border-radius:var(--radius);background:rgba(255,255,255,.02);
  overflow:hidden;
}
.bf-faq-item summary{
  list-style:none;cursor:pointer;padding:1rem 1.15rem;font-weight:700;color:var(--text);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;line-height:1.4;
}
.bf-faq-item summary::-webkit-details-marker{display:none}
.bf-faq-item summary::after{
  content:"+";flex-shrink:0;width:1.5rem;height:1.5rem;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(207,164,68,.4);color:var(--gold);font-size:1.1rem;font-weight:700;
}
.bf-faq-item[open] summary::after{content:"–"}
.bf-faq-item[open] summary{border-bottom:1px solid var(--line);color:var(--gold)}
.bf-faq-a{padding:.85rem 1.15rem 1.15rem}
.bf-faq-a p{margin:0;color:var(--muted);font-size:.96rem;line-height:1.6}

.bf-svc-img{
  width:100%;aspect-ratio:16/10;object-fit:cover;border-radius:10px;margin:0 0 .75rem;
  background:#121214;
}
.bf-hi-card .bf-svc-img{aspect-ratio:4/3;margin:0}
.bf-hi-card .bf-svc-thumb{margin:0 0 .85rem}
.bf-footer{
  border-top:1px solid var(--line);padding:2.75rem 0 5.5rem;
  color:var(--muted);font-size:.92rem;background:#080809;
}
.bf-footer-top{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid var(--line);
}
.bf-footer-logo{
  display:flex;align-items:center;gap:.85rem;color:var(--text);text-decoration:none;
}
.bf-footer-logo img{
  width:64px;height:64px;border-radius:50%;object-fit:cover;
  border:1px solid rgba(207,164,68,.35);background:#111;
}
.bf-footer-logo strong{display:block;font-size:1.15rem;color:var(--gold);font-weight:800}
.bf-footer-logo em{display:block;font-style:normal;color:var(--muted);font-size:.82rem;margin-top:.15rem}
.bf-footer-grid,.bf-footer-grid-3{
  display:grid;grid-template-columns:1fr;gap:1.75rem 1.5rem;
}
@media (min-width:768px){
  .bf-footer-grid,.bf-footer-grid-3{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:1024px){
  .bf-footer-grid,.bf-footer-grid-3{grid-template-columns:repeat(3,1fr)}
}
.bf-footer h3{
  margin:0 0 .85rem;font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--gold);font-weight:700;
}
.bf-footer ul{list-style:none;margin:0;padding:0}
.bf-footer li{margin:0 0 .45rem}
.bf-footer a{color:var(--muted);line-height:1.35;font-size:.88rem}
.bf-footer a:hover{color:var(--gold)}
/* Dense service list in footer (all 16 landings) */
.bf-footer .bf-footer-svc-col ul{columns:1}
@media (min-width:768px){
  .bf-footer-grid-3 .bf-footer-svc-col ul{columns:2;column-gap:1.25rem}
}
.bf-footer .bf-footer-svc-col li{break-inside:avoid}
.bf-footer-address{margin:1rem 0 0;font-size:.88rem;line-height:1.6;color:var(--muted)}
.bf-social{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:.75rem}
.bf-lang-dd{position:relative;display:inline-block}
.bf-lang-dd summary{
  list-style:none;cursor:pointer;display:inline-flex;align-items:center;gap:8px;
  min-height:44px;padding:8px 14px;border-radius:999px;border:1px solid rgba(207,164,68,.4);
  background:rgba(255,255,255,.04);color:var(--text);font-weight:700;font-size:.88rem;
}
.bf-lang-dd summary::-webkit-details-marker{display:none}
.bf-lang-dd[open] summary{border-color:var(--gold)}
.bf-lang-dd ul{
  position:absolute;right:0;top:calc(100% + 8px);min-width:200px;
  background:rgba(15,15,16,.98);border:1px solid var(--line);border-radius:12px;
  padding:6px 0;margin:0;box-shadow:0 12px 28px rgba(0,0,0,.4);z-index:5;
  list-style:none;
}
.bf-lang-dd li{margin:0}
.bf-lang-dd a{
  display:flex;align-items:center;gap:8px;padding:12px 14px;min-height:44px;
  color:var(--text);font-weight:600;
}
.bf-lang-dd a:hover,.bf-lang-dd a[aria-current="true"]{background:rgba(207,164,68,.12);color:var(--gold)}
.bf-footer-bottom{
  margin-top:2rem;padding-top:1.25rem;border-top:1px solid var(--line);
  display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center;
}
.bf-footer-info-col ul li:nth-child(n+5){margin-top:.15rem}
.bf-footer-info-col ul li:nth-child(5){margin-top:.65rem;padding-top:.55rem;border-top:1px solid var(--line)}
.bf-footer-cookie-btn{
  appearance:none;background:none;border:0;padding:0;margin:0;
  color:var(--muted);font:inherit;font-size:.88rem;cursor:pointer;text-align:left;
  text-decoration:underline;text-underline-offset:2px;
}
.bf-footer-cookie-btn:hover{color:var(--gold)}
.bf-footer-bottom .bf-footer-cookie-btn{font-size:inherit;text-decoration:none}
.bf-footer-bottom .bf-footer-cookie-btn:hover{color:var(--gold)}
@media(max-width:640px){
  .bf-footer{padding-bottom:6rem}
  .bf-footer-logo img{width:56px;height:56px}
}

/* Intro chips under hero strip */
.bf-chips{display:flex;flex-wrap:wrap;gap:.5rem;margin:0 0 1.25rem}
.bf-chip{
  border:1px solid rgba(207,164,68,.35);color:var(--gold);
  border-radius:999px;padding:.35rem .75rem;font-size:.78rem;font-weight:600;
}

/* Tablet / phone nav */
@media (max-width:1023px){
  .bf-nav{display:none}
  .bf-burger{display:inline-flex}
  .bf-split{grid-template-columns:1fr}
  .bf-hero{min-height:min(85svh,760px)}
}

/* Phone */
@media (max-width:640px){
  .bf-wrap{width:min(100% - 1.25rem,var(--max))}
  .bf-logo span.bf-logo-text{font-size:.95rem}
  .bf-hero-inner{padding:3.25rem 0 2.5rem}
  .bf-card h3{font-size:1.08rem}
  .bf-btn{width:100%}
  .bf-actions{flex-direction:column}
}

/* Transitions / motion */
.bf-card,.bf-btn,.bf-nav a,.bf-chip,.bf-stat,.bf-gallery-item,.bf-cta{
  transition:transform .25s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease, opacity .3s ease;
}
.bf-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  border-color:rgba(207,164,68,.35);
}
.bf-btn:active{transform:scale(.98)}
.bf-reveal{
  opacity:0;transform:translateY(18px);
  animation:bfIn .7s ease forwards;
}
.bf-reveal:nth-child(2){animation-delay:.08s}
.bf-reveal:nth-child(3){animation-delay:.16s}
.bf-reveal:nth-child(4){animation-delay:.24s}
@keyframes bfIn{to{opacity:1;transform:none}}

/* Photo gallery — 3 visible, rest via Show more */
.bf-gallery{
  display:grid;
  grid-template-columns:1fr;
  gap:.55rem;
}
@media (min-width:768px){
  .bf-gallery{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:1024px){
  .bf-gallery{grid-template-columns:repeat(3,1fr)}
}
.bf-gallery-item,.bf-gallery a,.bf-gallery figure,.bf-media-btn,.bf-svc-thumb{
  margin:0;padding:0;border:0;border-radius:12px;overflow:hidden;
  border:1px solid var(--line);background:#1a1a1e;
  cursor:pointer;display:block;width:100%;
  font:inherit;color:inherit;
}
.bf-gallery-item{aspect-ratio:1}
.bf-gallery img,.bf-media-btn img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .45s ease;display:block;
}
.bf-gallery-item:hover img,.bf-media-btn:hover img,.bf-svc-thumb:hover img{transform:scale(1.05)}
.bf-gallery-wide{grid-column:span 1}
.is-more-hidden{display:none!important}
.bf-more-wrap{display:flex;justify-content:center;margin-top:1.25rem}
.bf-svc-thumb{background:transparent;border:0;border-radius:10px;overflow:hidden;margin:0 0 .75rem;padding:0;cursor:pointer;width:100%}
.bf-svc-thumb .bf-svc-img{margin:0}
.bf-more{
  display:inline-block;margin-top:.9rem;font-weight:700;font-size:.9rem;
  background:none;border:0;padding:0;color:var(--gold);cursor:pointer;font-family:inherit;
}
.bf-more:hover{color:var(--gold2)}
button.bf-cta{
  border:0;cursor:pointer;font:inherit;
}

.bf-intro-row{
  display:grid;grid-template-columns:1.1fr .9fr;gap:1.5rem;align-items:center;
}
.bf-intro-row .bf-media-stack{
  display:grid;grid-template-columns:1fr 1fr;gap:.55rem;
}
.bf-intro-row .bf-media-stack .bf-media-btn{
  border-radius:12px;aspect-ratio:3/4;border:1px solid var(--line);
}
.bf-intro-row .bf-media-stack .bf-media-btn img{
  border-radius:12px;aspect-ratio:3/4;object-fit:cover;width:100%;height:100%;
}
.bf-intro-row .bf-media-stack .bf-media-btn:first-child{
  grid-row:span 2;aspect-ratio:auto;height:100%;min-height:280px;
}
.bf-intro-row .bf-media-stack .bf-media-btn:first-child img{aspect-ratio:auto;height:100%;min-height:280px}

/* Design switch chip in header/footer */
.bf-design-switch{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:40px;padding:.55rem 1rem;border-radius:999px;
  border:1px solid rgba(207,164,68,.45);color:var(--gold)!important;
  font-size:.82rem;font-weight:700;background:rgba(207,164,68,.08);
  white-space:nowrap;
}
.bf-design-switch:hover{background:rgba(207,164,68,.18);color:var(--gold2)!important}
.bf-header .bf-design-switch{margin-left:.35rem}

.bf-band{
  padding:1rem 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  background:linear-gradient(90deg,rgba(207,164,68,.08),transparent 50%,rgba(207,164,68,.08));
}
.bf-band p{margin:0;text-align:center;color:var(--muted);font-size:.95rem}

@media (max-width:1023px){
  .bf-intro-row{grid-template-columns:1fr}
  .bf-header .bf-design-switch{display:none}
}

/* Location / map */
.bf-loc-grid{
  display:grid;grid-template-columns:1fr;gap:1.5rem;align-items:stretch;
}
@media (min-width:768px){
  .bf-loc-grid{grid-template-columns:1.2fr .8fr}
}
.bf-loc-map{
  border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);
  min-height:280px;background:#121214;
}
.bf-loc-map iframe{display:block;width:100%;height:100%;min-height:320px;border:0}
.bf-loc-info{
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.35rem 1.25rem;display:flex;flex-direction:column;justify-content:center;
}
.bf-loc-addr{margin:0 0 .5rem;font-size:1.1rem;color:var(--text);line-height:1.4}
.bf-loc-meta{margin:0 0 .45rem;color:var(--muted);font-size:.95rem}
.bf-loc-meta a{color:var(--gold);font-weight:700}
.bf-loc-actions{margin-top:1rem;flex-wrap:wrap}
.bf-loc-hint{margin:1rem 0 0;font-size:.88rem}
.bf-loc-hint a{color:var(--muted)}
.bf-loc-hint a:hover{color:var(--gold)}
@media(max-width:767px){
  .bf-loc-map iframe{min-height:260px}
}

/* Booking modal */
.bf-modal[hidden],.bf-lightbox[hidden]{display:none!important}
.bf-modal{
  position:fixed;inset:0;z-index:1000001;display:flex;align-items:center;justify-content:center;
  padding:1rem;
}
.bf-modal-bg,.bf-lightbox-bg{
  position:absolute;inset:0;background:rgba(0,0,0,.72);backdrop-filter:blur(6px);
}
.bf-modal-panel{
  position:relative;z-index:1;width:min(100%,420px);max-height:min(92vh,640px);overflow:auto;
  background:#141416;border:1px solid rgba(207,164,68,.35);border-radius:18px;
  padding:1.5rem 1.35rem 1.35rem;box-shadow:0 24px 60px rgba(0,0,0,.5);color:var(--text);
}
.bf-modal-panel h2{margin:0 0 .4rem;font-size:1.35rem;color:var(--gold)}
.bf-modal-sub{margin:0 0 1.1rem;color:var(--muted);font-size:.92rem;line-height:1.45}
.bf-modal-x,.bf-lightbox-x{
  position:absolute;top:10px;right:10px;width:44px;height:44px;border:0;border-radius:50%;
  background:rgba(255,255,255,.08);color:#fff;font-size:1.6rem;line-height:1;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;z-index:2;
}
.bf-modal-x:hover,.bf-lightbox-x:hover{background:rgba(207,164,68,.25);color:var(--gold)}
.bf-book-form label{display:block;margin:0 0 .85rem;font-size:.88rem;color:var(--muted)}
.bf-book-form label span{display:block;margin-bottom:.35rem;font-weight:600;color:var(--text)}
.bf-book-form input,.bf-book-form textarea{
  width:100%;box-sizing:border-box;min-height:48px;padding:.7rem .85rem;border-radius:12px;
  border:1px solid var(--line);background:rgba(255,255,255,.04);color:var(--text);font:inherit;
}
.bf-book-form textarea{min-height:88px;resize:vertical}
.bf-book-form input:focus,.bf-book-form textarea:focus{outline:2px solid rgba(207,164,68,.45);border-color:var(--gold)}
.bf-book-submit{width:100%;margin-top:.25rem}
/* Treatwell online booking — salad green button */
.bf-book-online{
  display:flex;align-items:center;justify-content:center;
  width:100%;box-sizing:border-box;margin-top:.85rem;
  min-height:48px;padding:.75rem 1.1rem;border-radius:999px;
  background:#9acd32; /* salad / yellow-green */
  color:#1a2a0a!important;font-size:.95rem;font-weight:800;
  text-align:center;text-decoration:none!important;
  border:1px solid rgba(60,100,20,.25);
  box-shadow:0 4px 14px rgba(120,160,40,.35);
  transition:background .15s,transform .15s,box-shadow .15s;
}
.bf-book-online:hover{
  background:#b4e04a;color:#142208!important;
  box-shadow:0 6px 18px rgba(120,160,40,.45);
  transform:translateY(-1px);
}
.bf-book-online:active{transform:scale(.98)}
.bf-book-msg{margin:.25rem 0 .75rem;padding:.65rem .75rem;border-radius:10px;font-size:.9rem}
.bf-book-msg.is-ok{background:rgba(80,160,90,.15);color:#9ddea6}
.bf-book-msg.is-err{background:rgba(200,70,70,.15);color:#f0a0a0}
body.bf-book-open,body.bf-lb-open{overflow:hidden}

/* Lightbox */
.bf-lightbox{
  position:fixed;inset:0;z-index:1000002;display:flex;align-items:center;justify-content:center;
  padding:3.5rem 3rem;
}
.bf-lightbox-figure{position:relative;z-index:1;margin:0;max-width:min(96vw,1100px);max-height:88vh}
.bf-lightbox-figure img{
  display:block;max-width:100%;max-height:88vh;width:auto;height:auto;margin:0 auto;
  border-radius:12px;box-shadow:0 20px 50px rgba(0,0,0,.55);object-fit:contain;background:#111;
}
.bf-lightbox-x{top:14px;right:14px;background:rgba(0,0,0,.55);border:1px solid rgba(255,255,255,.2)}
.bf-lightbox-nav{
  position:absolute;z-index:2;top:50%;transform:translateY(-50%);
  width:48px;height:48px;border-radius:50%;border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.45);color:#fff;font-size:1.8rem;cursor:pointer;line-height:1;
  display:inline-flex;align-items:center;justify-content:center;
}
.bf-lightbox-prev{left:12px}
.bf-lightbox-next{right:12px}
.bf-lightbox-nav:hover{background:rgba(207,164,68,.3);border-color:var(--gold)}
@media(max-width:640px){
  .bf-lightbox{padding:3rem .5rem}
  .bf-lightbox-nav{width:40px;height:40px;font-size:1.4rem}
  .bf-lightbox-prev{left:4px}
  .bf-lightbox-next{right:4px}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .bf-drawer,.bf-drawer-bg,.bf-card,.bf-gallery img{transition:none}
  .bf-reveal{opacity:1;transform:none;animation:none}
}

/* Legacy floating bar: Kalba / LT / Greita versija — removed */
.tatjana-i18n-bar,#tatjana-i18n-bar{display:none!important}
