/* =====================================================================
   ALWEB — "Warm & Friendly" template
   Light, inviting, soft. Cream + caramel, rounded type, gentle motion.
   One stylesheet, no build step.

   Theme contract: every color/font token is a CSS custom property the
   pipeline's content.theme can override at runtime via applyTheme().
   Token NAMES (--bg, --ink, --gold, --font-headline, …) are the
   contract — do not rename. Defaults ship the warm friendly palette;
   a client can re-skin via content.theme without touching this file.
   ===================================================================== */

:root{
  /* surfaces — soft & light */
  --bg:        #fbf3e4;   /* warm paper cream */
  --bg-tint:   #f4e6cd;   /* slightly deeper cream for alt sections */
  --paper:     #ffffff;   /* clean white cards */
  --cream:     #fffdf8;

  /* ink — warm cocoa, friendly not harsh */
  --ink:       #45301c;   /* headings / strong text */
  --ink-soft:  #5f4429;   /* body text */
  --muted:     #7a5a34;   /* labels / secondary — ≥4.5:1 (WCAG AA) on cream/paper/tint */
  --muted-soft:#b59a72;

  /* warm caramel accent system */
  --gold:      #c9821f;
  --gold-dark: #a4631a;
  --gold-light:#eaa944;
  --berry:     #c4562e;   /* warm terracotta secondary accent */

  /* soft hairlines */
  --line:      rgba(122,80,30,.16);
  --line-soft: rgba(122,80,30,.08);

  --font-headline: "Varela Round", system-ui, sans-serif;
  --font-body:     "Nunito Sans", system-ui, sans-serif;
  --font-mono:     "Nunito Sans", system-ui, sans-serif;

  --maxw:      1240px;
  --maxw-text: 42rem;
  --pad:       clamp(1.25rem, 5vw, 4rem);
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 14px 38px -14px rgba(122,74,28,.28);
  --shadow-sm: 0 6px 18px -8px rgba(122,74,28,.22);
  --ease:      cubic-bezier(.22,.7,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--bg);scroll-padding-top:6rem}
#about,#menu,#hours,#visit,#gallery-section,#top{scroll-margin-top:6rem}
body{
  margin:0;background:var(--bg);color:var(--ink-soft);
  font-family:var(--font-body);font-size:17px;line-height:1.7;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--font-headline);margin:0;color:var(--ink);line-height:1.12;font-weight:400}
::selection{background:var(--gold-light);color:#3a2410}
[hidden]{display:none !important}
:focus-visible{outline:3px solid var(--gold);outline-offset:3px;border-radius:6px}

.eyebrow,.kicker{
  font-family:var(--font-body);font-weight:700;font-size:.74rem;
  text-transform:uppercase;letter-spacing:.16em;color:var(--gold-dark);
}

/* ========== HEADER ========== */
.header{
  position:fixed;left:0;right:0;top:0;z-index:50;
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  gap:1.5rem;padding:1.05rem var(--pad);
  background:rgba(255,253,248,.9);
  backdrop-filter:saturate(160%) blur(12px);
  -webkit-backdrop-filter:saturate(160%) blur(12px);
  box-shadow:0 4px 20px -18px rgba(122,74,28,.55);
  transition:padding .35s var(--ease),box-shadow .35s var(--ease),background .35s var(--ease);
}
body.is-scrolled .header{
  background:rgba(255,253,248,.97);
  box-shadow:0 8px 26px -16px rgba(122,74,28,.6);
  padding-top:.75rem;padding-bottom:.75rem;
}
.header-left{display:flex;align-items:center;gap:.85rem;min-width:0}
.brand-mark{
  width:50px;height:50px;border-radius:50%;object-fit:cover;flex-shrink:0;
  box-shadow:0 0 0 3px var(--cream),0 6px 16px -6px rgba(122,74,28,.45);
}
.brand-text{display:flex;flex-direction:column;min-width:0}
.brand-name{
  font-family:var(--font-headline);font-size:1.4rem;
  line-height:1;color:var(--ink);
}
.brand-sub{
  font-family:var(--font-body);font-weight:700;font-size:.62rem;
  letter-spacing:.16em;text-transform:uppercase;color:var(--gold-dark);
  margin-top:.32rem;
}
.header-center{
  display:flex;gap:.4rem;justify-content:center;
  font-family:var(--font-body);font-weight:600;font-size:.92rem;
}
.header-center a{
  color:var(--ink-soft);padding:.5rem .95rem;border-radius:999px;
  transition:background .2s var(--ease),color .2s var(--ease);
}
.header-center a:hover{background:rgba(201,130,31,.12);color:var(--gold-dark)}
.header-right{display:flex;justify-content:flex-end;align-items:center;gap:.7rem}

.pill-status{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--font-body);font-weight:700;font-size:.74rem;
  color:var(--ink-soft);padding:.42rem .8rem;border-radius:999px;
  background:var(--cream);box-shadow:var(--shadow-sm);
}
.pill-status .dot{width:8px;height:8px;border-radius:50%;background:var(--muted);transition:background .3s}
.pill-status.is-open .dot{background:#5fae3b;box-shadow:0 0 0 4px rgba(95,174,59,.2)}
.pill-status.is-closed .dot{background:var(--berry)}

.lang-toggle{
  display:inline-flex;align-items:center;gap:.35rem;
  background:var(--cream);border:0;color:var(--ink-soft);
  padding:.5rem .85rem;border-radius:999px;
  font-family:var(--font-body);font-weight:700;font-size:.74rem;
  letter-spacing:.04em;cursor:pointer;box-shadow:var(--shadow-sm);
  transition:color .2s var(--ease),transform .2s var(--ease);
}
.lang-toggle:hover{transform:translateY(-1px)}
.lang-toggle .sep{opacity:.35}
.lang-toggle [data-lang]{opacity:.4;transition:opacity .2s}
.lang-toggle .active{opacity:1;color:var(--gold-dark)}

@media (max-width:860px){
  .header{grid-template-columns:1fr auto;gap:.7rem}
  .header-center{display:none}
  .brand-sub{display:none}
}

/* ========== HERO — split: cream content panel + framed photo ==========
   Text lives on solid cream (always readable, on-brand). The photo is a
   contained, rounded frame — no text over it, so ANY client photo works
   without a legibility fight. This is the robust template pattern. */
.hero{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  grid-template-rows:1fr auto;
  align-items:stretch;
  min-height:88svh;background:var(--bg);
}
.hero-inner{
  grid-column:1;grid-row:1;align-self:center;
  padding:8rem clamp(1.5rem,3.5vw,3.5rem) 3.5rem var(--pad);
  display:flex;flex-direction:column;align-items:flex-start;text-align:left;
  color:var(--ink);max-width:660px;
}
.hero-bg{
  grid-column:2;grid-row:1;position:relative;z-index:0;
  margin:7rem var(--pad) 2.5rem 0;
  border-radius:var(--radius);box-shadow:var(--shadow);
  background-image:url("images/interier.jpg");
  background-size:cover;background-position:center 55%;
  filter:saturate(1.06);min-height:62svh;
}
.hero-overlay,.hero-grain{display:none}
.hero-eyebrow{
  font-family:var(--font-body);font-weight:800;font-size:.76rem;
  letter-spacing:.16em;text-transform:uppercase;color:var(--gold-dark);
  margin-bottom:1.3rem;display:inline-flex;align-items:center;gap:.85rem;
}
.hero-eyebrow .line{width:26px;height:2px;border-radius:2px;background:var(--gold);opacity:.7}
.hero-logo{
  width:clamp(76px,8vw,98px);height:clamp(76px,8vw,98px);
  border-radius:50%;object-fit:cover;background:var(--cream);padding:4px;
  box-shadow:0 0 0 4px var(--cream),0 12px 28px -12px rgba(122,74,28,.5);
  margin-bottom:1.5rem;
}
.hero-title{
  font-family:var(--font-headline);
  font-size:clamp(3rem,7.5vw,6rem);line-height:1.02;letter-spacing:-.01em;
  color:var(--ink);
}
.hero-title em{font-style:normal;color:var(--gold-dark)}
.hero-tagline{
  margin:1.4rem 0 0;font-family:var(--font-body);font-weight:600;
  font-size:clamp(1.05rem,1.7vw,1.4rem);color:var(--ink-soft);
  max-width:34rem;line-height:1.55;text-wrap:balance;min-height:calc(1.55em * 2);
}
.hero-subtitle{
  margin:.85rem 0 0;font-family:var(--font-body);font-weight:800;
  font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);
}
@media (max-width:900px){
  .hero{grid-template-columns:1fr;grid-template-rows:auto auto auto;min-height:auto}
  .hero-inner{
    grid-column:1;grid-row:1;align-items:center;text-align:center;
    padding:7.5rem var(--pad) 2.5rem;max-width:100%;
  }
  .hero-bg{grid-column:1;grid-row:2;margin:0 var(--pad) 2.5rem;min-height:48svh}
  .hero-eyebrow{justify-content:center}
}
@media (max-width:560px){
  .hero-tagline{min-height:calc(1.55em * 3)}
  .hero-bg{min-height:40svh}
}

/* hero meta strip — soft cream band, full width */
.hero-meta{
  grid-column:1 / -1;grid-row:2;position:relative;z-index:1;
  display:grid;grid-template-columns:repeat(4,1fr);
  background:var(--cream);color:var(--ink-soft);
  border-top:1px solid var(--line-soft);
}
.hero-meta > div{
  padding:1.3rem var(--pad);border-right:1px solid var(--line-soft);
  display:flex;flex-direction:column;gap:.35rem;
}
.hero-meta > div:last-child{border-right:0}
.hero-meta .key{
  font-family:var(--font-body);font-weight:800;font-size:.62rem;
  letter-spacing:.13em;text-transform:uppercase;color:var(--gold-dark);
}
.hero-meta .val{font-weight:600;font-size:.9rem;color:var(--ink)}
@media (max-width:900px){.hero-meta{grid-row:3}}
@media (max-width:860px){
  .hero-meta{grid-template-columns:1fr 1fr}
  .hero-meta > div:nth-child(2){border-right:0}
  .hero-meta > div:nth-child(1),.hero-meta > div:nth-child(2){border-bottom:1px solid var(--line-soft)}
}

/* ========== SOCIAL / DELIVERY ICONS ========== */
.hero-social{display:flex;align-items:center;justify-content:flex-start;gap:.7rem;margin-top:2.2rem}
.hero-social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:50px;height:50px;border-radius:50%;color:var(--ink);
  background:var(--cream);box-shadow:var(--shadow-sm);
  transition:background .22s var(--ease),color .22s var(--ease),
             transform .22s var(--ease),box-shadow .22s var(--ease);
}
.hero-social a:hover{
  background:var(--gold);color:#fff;transform:translateY(-3px) scale(1.04);
  box-shadow:0 14px 26px -12px rgba(201,130,31,.7);
}
@media (max-width:900px){.hero-social{justify-content:center}}
.footer-social{display:flex;align-items:center;gap:.55rem}
.footer-social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:50%;color:var(--cream);
  background:rgba(255,253,248,.1);border:1px solid rgba(255,253,248,.22);
  transition:background .22s var(--ease),color .22s var(--ease),transform .22s var(--ease);
}
.footer-social a:hover{background:var(--gold);border-color:var(--gold);transform:translateY(-2px)}
@media (max-width:560px){
  .hero-social a{width:44px;height:44px}
  .footer-social{order:3;width:100%;justify-content:center}
}

/* ========== STATEMENT / ABOUT ========== */
.pull{position:relative;padding:6rem var(--pad) 5rem;text-align:center;max-width:880px;margin:0 auto}
.pull-quote-mark{
  display:block;font-family:var(--font-headline);font-size:5rem;line-height:0;
  color:var(--gold-light);height:2.4rem;margin-bottom:2rem;opacity:.65;
}
.pull-text{
  font-family:var(--font-headline);
  font-size:clamp(1.45rem,3.2vw,2.3rem);line-height:1.4;
  color:var(--ink);max-width:40rem;margin:0 auto 1.6rem;
  text-wrap:pretty;min-height:calc(1.4em * 2);
}
.pull-text em{font-style:normal;color:var(--gold-dark)}
.pull-author{
  font-family:var(--font-body);font-weight:700;font-size:.72rem;
  letter-spacing:.16em;text-transform:uppercase;color:var(--muted);
  display:inline-flex;align-items:center;gap:.9rem;
}
.pull-author:empty{display:none}
.pull-author::before,.pull-author::after{content:"";width:30px;height:2px;border-radius:2px;background:var(--line)}
@media (max-width:560px){.pull-text{min-height:calc(1.4em * 3)}}

/* ========== SECTIONS ========== */
.section{position:relative;padding:6rem var(--pad)}
.section-inner{max-width:var(--maxw);margin:0 auto}
.sec-no{display:none}
.section-head{
  display:flex;flex-direction:column;align-items:center;gap:.8rem;
  text-align:center;margin-bottom:3.5rem;
}
.section-head .rule{display:none}
.section-head .num{display:none}
.section-head h2{font-size:clamp(2.2rem,5.5vw,3.6rem);letter-spacing:-.01em;color:var(--ink)}
.section-head h2 em{font-style:normal;color:var(--gold-dark)}
.section-head .kicker{
  font-family:var(--font-body);font-weight:700;font-size:.74rem;
  letter-spacing:.14em;text-transform:uppercase;color:var(--muted);
}
.section-head .kicker:empty{display:none}

/* ========== GALLERY — uniform friendly grid ========== */
.gallery-block{background:var(--bg-tint)}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.gallery figure{
  margin:0;position:relative;overflow:hidden;aspect-ratio:4/3;
  background:var(--paper);cursor:zoom-in;border-radius:var(--radius-sm);
  box-shadow:var(--shadow-sm);
}
.gallery figure img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .7s var(--ease),filter .4s var(--ease);
}
.gallery figure:hover img{transform:scale(1.06);filter:brightness(1.04)}
.gallery figure figcaption{
  position:absolute;left:0;right:0;bottom:0;
  padding:1.4rem .9rem .8rem;
  font-family:var(--font-body);font-weight:700;font-size:.74rem;
  letter-spacing:.04em;color:#fff;
  background:linear-gradient(180deg,transparent,rgba(50,30,12,.78));
  opacity:0;transform:translateY(6px);
  transition:opacity .3s var(--ease),transform .3s var(--ease);
}
.gallery figure:hover figcaption{opacity:1;transform:translateY(0)}
.gallery:not(.expanded) figure:nth-child(n+7){display:none}
.gallery.expanded figure:nth-child(n+7){display:block}

.gallery-more{display:flex;justify-content:center;margin-top:2.6rem}
.gallery-more button{
  font-family:var(--font-body);font-weight:700;font-size:.85rem;
  letter-spacing:.02em;background:var(--gold);color:#fff;border:0;
  padding:.95rem 2.2rem;border-radius:999px;cursor:pointer;
  box-shadow:0 12px 26px -12px rgba(201,130,31,.8);
  transition:background .2s var(--ease),transform .2s var(--ease),box-shadow .2s var(--ease);
}
.gallery-more button:hover{background:var(--gold-dark);transform:translateY(-2px);box-shadow:0 16px 30px -12px rgba(201,130,31,.9)}
.gallery-credit{
  text-align:center;margin-top:1.4rem;
  font-family:var(--font-body);font-weight:600;font-size:.78rem;
  color:var(--muted);
}
.gallery-credit a{color:inherit;text-decoration:underline;text-underline-offset:2px}
@media (max-width:820px){.gallery{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.gallery{grid-template-columns:repeat(2,1fr);gap:12px}}

/* ========== MENU ========== */
.menu{background:var(--bg)}
.menu-grid{
  display:flex;flex-direction:column;max-width:46rem;margin:0 auto;
  background:var(--paper);border-radius:var(--radius);
  box-shadow:var(--shadow);overflow:hidden;
}
.menu-cat{border-bottom:1px solid var(--line-soft)}
.menu-cat:last-child{border-bottom:0}
.menu-cat > summary.menu-cat-head{
  cursor:pointer;list-style:none;padding:1.4rem 1.8rem;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  transition:background .2s var(--ease);-webkit-tap-highlight-color:transparent;
}
.menu-cat > summary::-webkit-details-marker{display:none}
.menu-cat > summary:hover{background:rgba(201,130,31,.06)}
.menu-cat-title{
  font-family:var(--font-headline);font-size:1.15rem;color:var(--ink);
  flex:1;
}
.menu-cat-icon{
  width:26px;height:26px;border-radius:50%;flex-shrink:0;position:relative;
  background:rgba(201,130,31,.14);color:var(--gold-dark);transition:background .2s var(--ease)}
.menu-cat-icon::before,.menu-cat-icon::after{
  content:"";position:absolute;left:50%;top:50%;background:currentColor;border-radius:2px}
.menu-cat-icon::before{width:11px;height:2px;transform:translate(-50%,-50%)}
.menu-cat-icon::after{width:2px;height:11px;transform:translate(-50%,-50%);transition:transform .25s var(--ease),opacity .25s var(--ease)}
.menu-cat[open] .menu-cat-icon{background:var(--gold);color:#fff}
.menu-cat[open] .menu-cat-icon::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.menu-cat[open] .menu-cat-title{color:var(--gold-dark)}
.menu-cat-body{padding:.2rem 1.8rem 1.6rem;animation:catfade .35s var(--ease)}
@keyframes catfade{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}

.menu-item{
  display:grid;grid-template-columns:1fr auto;align-items:baseline;
  gap:.35rem .7rem;padding:.85rem 0;border-bottom:1px dashed var(--line-soft);
}
.menu-item:last-child{border-bottom:0}
.menu-item-name{
  font-family:var(--font-body);font-weight:700;font-size:1.06rem;
  color:var(--ink);display:flex;align-items:baseline;gap:.5rem;
}
.menu-item-name .leader{flex:1;border-bottom:2px dotted var(--muted-soft);transform:translateY(-4px);min-width:1.5rem;margin:0 .35rem;opacity:.6}
.menu-item-price{
  font-family:var(--font-body);font-weight:800;font-size:.98rem;
  white-space:nowrap;color:var(--gold-dark);
}
.menu-item-desc{
  grid-column:1/-1;color:var(--muted);font-size:.94rem;
  margin-top:.2rem;line-height:1.5;
}
.menu-note{
  margin:3rem auto 0;max-width:38rem;text-align:center;
  font-family:var(--font-body);font-style:italic;color:var(--muted);font-size:1rem;
}
.menu-note:empty{display:none}

/* ========== HOURS + VISIT split ========== */
.split{
  display:grid;grid-template-columns:1fr 1fr;gap:1.6rem;
  max-width:var(--maxw);margin:0 auto;padding:6rem var(--pad);
}
@media (max-width:920px){.split{grid-template-columns:1fr;padding:4.5rem var(--pad)}}
.split > .pane{
  position:relative;padding:3rem;border-radius:var(--radius);
}
.split .pane-hours{background:var(--paper);box-shadow:var(--shadow)}
.split .pane-visit{background:var(--ink);color:var(--cream);box-shadow:var(--shadow)}

.pane-head{margin-bottom:2.4rem}
.pane-head .num{display:none}
.pane-head h2{font-size:clamp(1.9rem,4vw,2.6rem);color:var(--ink)}
.pane-head h2 em{font-style:normal;color:var(--gold-dark)}
.pane-visit .pane-head h2{color:var(--cream)}
.pane-visit .pane-head h2 em{color:var(--gold-light)}

.hours-list{list-style:none;padding:0;margin:0}
.hours-list li{
  display:grid;grid-template-columns:1fr auto auto;align-items:baseline;
  gap:1rem;padding:.95rem 0;border-bottom:1px solid var(--line-soft);
}
.hours-list li:last-child{border-bottom:0}
.hours-list .day{font-family:var(--font-headline);font-size:1.1rem;color:var(--ink-soft)}
.hours-list .dots{border-bottom:2px dotted var(--muted-soft);transform:translateY(-4px);min-width:2rem;opacity:.5}
.hours-list .hrs{font-family:var(--font-body);font-weight:700;font-size:.96rem;color:var(--ink)}
.hours-list li.today{
  margin:0 -1.1rem;padding:.95rem 1.1rem;border-radius:14px;border-bottom-color:transparent;
  background:rgba(201,130,31,.12);
}
.hours-list li.today .day{color:var(--gold-dark);position:relative}
.hours-list li.today .day::after{
  content:"DNES";font-family:var(--font-body);font-weight:800;font-size:.56rem;
  letter-spacing:.1em;background:var(--gold);color:#fff;padding:.2rem .45rem;
  border-radius:999px;margin-left:.7rem;vertical-align:middle;
}
html[lang="en"] .hours-list li.today .day::after{content:"TODAY"}
.hours-list li.today .hrs{color:var(--gold-dark);font-weight:800}
.hours-list li.closed .hrs{color:var(--muted)}
.hours-note{margin-top:2.2rem;font-family:var(--font-body);font-style:italic;color:var(--muted);font-size:1rem;max-width:30rem}
.hours-note:empty{display:none}

.visit-address{
  font-family:var(--font-headline);font-size:clamp(1.4rem,2.4vw,1.85rem);
  color:var(--cream);line-height:1.35;margin:0 0 2.4rem;
}
.visit-address .small{
  display:block;font-family:var(--font-body);font-weight:700;font-size:.68rem;
  letter-spacing:.16em;text-transform:uppercase;color:var(--gold-light);margin-bottom:.7rem;
}
.contact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem 1.8rem;margin-bottom:2.4rem}
@media (max-width:480px){.contact-grid{grid-template-columns:1fr}}
.contact-item{display:flex;flex-direction:column;gap:.35rem}
.contact-item .label{
  font-family:var(--font-body);font-weight:800;font-size:.6rem;
  letter-spacing:.16em;text-transform:uppercase;color:var(--gold-light);
}
.contact-item a,.contact-item span{
  color:var(--cream);font-size:1rem;align-self:flex-start;
  border-bottom:2px solid transparent;transition:border-color .2s var(--ease)}
.contact-item a:hover{border-bottom-color:var(--gold-light)}
.map-wrap{
  margin-top:1rem;border-radius:var(--radius-sm);overflow:hidden;aspect-ratio:16/10;
  box-shadow:0 16px 36px -16px rgba(0,0,0,.5);
}
.map-wrap iframe{width:100%;height:100%;border:0;filter:saturate(1.05)}

/* ========== FOOTER ========== */
.footer{
  background:var(--ink);color:rgba(255,253,248,.7);
  padding:3rem var(--pad);
  font-family:var(--font-body);font-weight:600;font-size:.8rem;
}
.footer-inner{
  max-width:var(--maxw);margin:0 auto;display:flex;
  justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1.2rem;
}
.footer .mark{display:flex;align-items:center;gap:.8rem;color:var(--cream);font-family:var(--font-headline);font-size:1.05rem}
.footer .mark img{width:34px;height:34px;border-radius:50%;object-fit:cover}
.footer .right{color:rgba(255,253,248,.55)}

/* ========== PHOTO CREDITS ========== */
.photo-credits{
  background:var(--ink);color:rgba(255,253,248,.5);
  padding:1.4rem var(--pad) 0;
  font-family:var(--font-body);font-size:.72rem;
}
.photo-credits-line{max-width:var(--maxw);margin:0 auto;text-align:center;line-height:1.7}
.photo-credits-line a{color:inherit;text-decoration:underline;text-underline-offset:2px}

/* ========== SCROLL REVEAL — gentle fade-up ========== */
.fade-in{opacity:0;transform:translateY(22px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.fade-in.in{opacity:1;transform:none}

/* ========== LIGHTBOX ========== */
.lightbox{
  position:fixed;inset:0;background:rgba(40,24,8,.92);z-index:120;
  display:none;align-items:center;justify-content:center;padding:2.5rem;
  animation:lbfade .25s var(--ease);
}
.lightbox.is-open{display:flex}
@keyframes lbfade{from{opacity:0}to{opacity:1}}
.lightbox-img{
  max-width:100%;max-height:100%;width:auto;height:auto;border-radius:var(--radius-sm);
  box-shadow:0 30px 90px -20px rgba(0,0,0,.7);cursor:default;
  animation:lbzoom .35s var(--ease)}
@keyframes lbzoom{from{opacity:0;transform:scale(.96)}to{opacity:1;transform:none}}
.lightbox-close,.lightbox-nav{
  position:absolute;background:rgba(255,255,255,.14);border:0;color:#fff;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s var(--ease),transform .2s var(--ease)}
.lightbox-close{top:1.4rem;right:1.4rem;width:46px;height:46px;border-radius:50%;font-size:1.1rem}
.lightbox-nav{top:50%;transform:translateY(-50%);width:54px;height:54px;border-radius:50%;font-size:1.6rem;line-height:1}
.lightbox-prev{left:1.4rem}
.lightbox-next{right:1.4rem}
.lightbox-close:hover,.lightbox-nav:hover{background:var(--gold)}
.lightbox-nav:hover{transform:translateY(-50%) scale(1.06)}
.lightbox-counter{
  position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);
  color:#fff;font-family:var(--font-body);font-weight:700;font-size:.78rem;opacity:.75}
.lightbox-caption{
  position:absolute;bottom:3.4rem;left:50%;transform:translateX(-50%);
  max-width:min(90vw,720px);text-align:center;color:#fff;
  font-family:var(--font-body);display:flex;flex-direction:column;gap:.3rem}
.lightbox-caption-text{font-size:.95rem;line-height:1.4}
.lightbox-caption-text:empty{display:none}
.lightbox-credit{font-size:.74rem;opacity:.7;color:var(--gold-light)}
.lightbox-credit:empty{display:none}
.lightbox-credit a{color:inherit;text-decoration:underline;text-underline-offset:2px}
@media (max-width:560px){
  .lightbox{padding:1rem}
  .lightbox-close{top:.6rem;right:.6rem}
  .lightbox-prev{left:.5rem}.lightbox-next{right:.5rem}
  .lightbox-nav{width:44px;height:44px;font-size:1.4rem}
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .hero-bg{animation:none;transform:scale(1.02)}
  .fade-in{opacity:1 !important;transform:none !important;transition:none}
  .menu-cat-body{animation:none}
  .lightbox,.lightbox-img{animation:none}
  .gallery figure:hover img{transform:none}
  .header{transition:none}
  *{scroll-behavior:auto !important}
}
