/* =====================================================
   KONOBA TOMA — Clean + Premium upgrades
   ===================================================== */

:root{
  --bone:#f3ece0;
  --bone-2:#ece3d2;
  --bone-3:#e2d6bf;
  --ink:#16140f;
  --ink-2:#3a352c;
  --muted:#7a7264;
  --line:rgba(22,20,15,.14);
  --line-strong:rgba(22,20,15,.22);
  --copper:#a85a3a;
  --copper-2:#c87554;

  --serif:'Fraunces', Georgia, serif;
  --sans:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease:cubic-bezier(.22,.61,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:110px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{
  font-family:var(--sans);
  background:var(--bone);
  color:var(--ink);
  font-size:16px;
  line-height:1.6;
  overflow-x:clip;
}
@media (min-width:1100px){body{font-size:17px}}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;border:none;background:none;color:inherit;cursor:pointer}
input,textarea,select{font:inherit}
::selection{background:var(--ink);color:var(--bone)}

h1,h2,h3,h4{
  font-family:var(--serif);
  font-weight:380;
  line-height:1.05;
  letter-spacing:-.02em;
  color:var(--ink);
}
h1{font-size:clamp(3rem, 8vw, 6.5rem)}
h2{font-size:clamp(2rem, 4.5vw, 3.4rem)}
h3{font-size:clamp(1.3rem, 2vw, 1.6rem)}
em, i{font-style:italic;color:var(--copper)}

p{color:var(--ink-2);line-height:1.65}
.lead{font-size:clamp(1.05rem,1.3vw,1.18rem);color:var(--ink-2);max-width:54ch}
.eyebrow{
  font-family:var(--sans);
  font-size:.74rem;letter-spacing:.32em;text-transform:uppercase;
  color:var(--muted);font-weight:500;
}

.wrap{width:min(1200px,92vw);margin-inline:auto;position:relative}
section{position:relative}
.pad{padding:clamp(4rem,9vw,8rem) 0}
.pad-sm{padding:clamp(3rem,6vw,5rem) 0}

/* Language toggle visibility */
.lang-en [lang="hr"]{display:none !important}
.lang-hr [lang="en"]{display:none !important}

/* =====================================================
   NAV
   ===================================================== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:80;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.2rem clamp(1.2rem,3vw,2.4rem);
  transition:background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), border-color .4s, color .4s;
  border-bottom:1px solid transparent;
  color:var(--bone);
}
.nav.scrolled{
  background:rgba(243,236,224,.92);
  backdrop-filter:saturate(180%) blur(16px);
  -webkit-backdrop-filter:saturate(180%) blur(16px);
  border-bottom-color:var(--line);
  padding-top:.85rem;padding-bottom:.85rem;
  color:var(--ink);
}
.brand{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:var(--serif);font-size:1.4rem;font-style:italic;
  color:inherit;
  text-shadow:0 1px 16px rgba(0,0,0,.25);
  transition:text-shadow .4s;
}
.nav.scrolled .brand{text-shadow:none}
.brand-mark{
  width:32px;height:32px;border-radius:8px;
  background:var(--copper);color:var(--bone);
  display:grid;place-items:center;
  font-family:var(--serif);font-style:italic;font-size:1.1rem;font-weight:500;
  line-height:1;
  flex-shrink:0;
}
.nav-links{display:flex;align-items:center;gap:2.2rem}
.nav-links a{
  font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;
  color:inherit;
  position:relative;padding:.3rem 0;transition:color .3s, opacity .3s;
  text-shadow:0 1px 12px rgba(0,0,0,.3);
}
.nav.scrolled .nav-links a{text-shadow:none}
.nav-links a::after{
  content:'';position:absolute;left:0;bottom:0;height:1px;width:0;background:currentColor;
  transition:width .4s var(--ease);
}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}

.nav-tools{display:flex;align-items:center;gap:.6rem}

.lang-switch{
  display:inline-flex;align-items:center;gap:.1rem;
  font-family:var(--sans);font-size:.72rem;letter-spacing:.14em;font-weight:600;
  color:inherit;
  border:1px solid currentColor;
  border-radius:999px;
  padding:.35rem;
  opacity:.85;
  text-shadow:0 1px 12px rgba(0,0,0,.25);
}
.nav.scrolled .lang-switch{text-shadow:none;opacity:1}
.lang-switch button{
  padding:.25rem .5rem;border-radius:999px;color:inherit;
  font:inherit;letter-spacing:.14em;
  opacity:.65;transition:opacity .3s, background .3s, color .3s;
  cursor:pointer;
}
.lang-switch button.active{
  opacity:1;
  background:var(--bone);
  color:var(--ink);
}
.nav.scrolled .lang-switch button.active{
  background:var(--ink);
  color:var(--bone);
}

.nav-cta{
  padding:.7rem 1.3rem;border-radius:999px;
  font-size:.76rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;
  background:var(--copper);color:var(--bone) !important;
  transition:background .3s, transform .3s, box-shadow .3s;
  box-shadow:0 8px 22px rgba(168,90,58,.35);
  text-shadow:none !important;
  white-space:nowrap;
}
.nav-cta::after{display:none !important}
.nav-cta:hover{background:var(--copper-2);transform:translateY(-2px);box-shadow:0 12px 28px rgba(168,90,58,.5)}

.burger{
  display:none;width:42px;height:42px;border-radius:50%;
  border:1px solid currentColor;position:relative;background:transparent;
  color:inherit;flex-shrink:0;
}
.burger span{
  position:absolute;left:11px;right:11px;height:1px;background:currentColor;
  transition:.35s var(--ease);
}
.burger span:nth-child(1){top:16px}
.burger span:nth-child(2){top:25px}
.burger.open span:nth-child(1){top:20px;transform:rotate(45deg)}
.burger.open span:nth-child(2){top:20px;transform:rotate(-45deg)}

.drawer{
  position:fixed;
  /* start below the nav bar so logo / lang / CTA stay exposed */
  top:64px;left:0;right:0;bottom:0;
  z-index:75;
  background:var(--bone);
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  gap:1.4rem;
  opacity:0;pointer-events:none;
  transition:opacity .35s var(--ease), transform .35s var(--ease);
  transform:translateY(-8px);
}
.drawer.open{opacity:1;pointer-events:auto;transform:translateY(0)}
.drawer a{
  font-family:var(--serif);font-style:italic;
  font-size:clamp(2rem,7vw,3rem);color:var(--ink);
}
.drawer a:hover{color:var(--copper)}

@media (max-width:920px){
  .nav-links{display:none}
  .burger{display:block}
  .nav-cta{padding:.6rem 1.1rem;font-size:.7rem}
}
@media (max-width:480px){
  .nav{gap:.5rem;padding:.9rem 1rem}
  .brand{font-size:1.2rem}
  .brand-mark{width:28px;height:28px;font-size:1rem}
  .nav-cta{padding:.55rem .9rem;font-size:.66rem;letter-spacing:.14em}
  .lang-switch{font-size:.66rem}
  .lang-switch button{padding:.2rem .4rem}
}

/* =====================================================
   HERO — slider + clean center
   ===================================================== */
.hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:flex;align-items:center;justify-content:center;
  text-align:center;
  padding:7rem 1.5rem 5rem;
  overflow:hidden;
  color:var(--bone);
}
.hero-slides{position:absolute;inset:0;z-index:-1}
.hero-slide{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  opacity:0;
  transform:scale(1.06);
  transition:opacity 1.6s var(--ease), transform 8s linear;
}
.hero-slide.active{opacity:1;transform:scale(1.12)}
.hero-slides::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(22,20,15,.3) 0%, rgba(22,20,15,.35) 50%, rgba(22,20,15,.78) 100%);
  z-index:1;
}
.hero-inner{position:relative;max-width:780px;width:100%;z-index:2}
.hero .eyebrow{color:rgba(243,236,224,.78);display:block;margin-bottom:1.4rem}
.hero-title{
  font-size:clamp(3.4rem, 10vw, 8rem);
  line-height:.95;
  color:var(--bone);
  letter-spacing:-.025em;
  font-weight:340;
}
.hero-title em{color:var(--copper-2);display:inline}
.hero-sub{
  margin-top:1.4rem;
  font-family:var(--serif);
  font-size:clamp(1.1rem,1.6vw,1.35rem);
  font-style:italic;
  color:rgba(243,236,224,.92);
  font-weight:380;
  max-width:32ch;margin-inline:auto;
}
.hero-meta-line{
  margin-top:2rem;
  font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(243,236,224,.78);
  display:inline-flex;align-items:center;gap:.9rem;flex-wrap:wrap;justify-content:center;
}
.hero-meta-line .sep{width:4px;height:4px;border-radius:50%;background:rgba(243,236,224,.5)}
.hero-cta{
  margin-top:2.4rem;
  display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap;
}
.hero-tags{
  margin-top:2.4rem;
  display:flex;justify-content:center;flex-wrap:wrap;gap:.5rem;
}
.hero-tag{
  font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;font-weight:500;
  padding:.42rem .8rem;border-radius:999px;
  border:1px solid rgba(243,236,224,.4);
  color:rgba(243,236,224,.9);
  backdrop-filter:blur(6px);
}

.btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:1rem 1.7rem;
  border-radius:999px;
  font-family:var(--sans);
  font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;font-weight:500;
  transition:transform .3s var(--ease), background .3s, color .3s, box-shadow .3s, border-color .3s;
  cursor:pointer;
  border:1px solid transparent;
}
.btn-primary{background:var(--bone);color:var(--ink)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(0,0,0,.25)}
.btn-outline{border-color:rgba(243,236,224,.5);color:var(--bone)}
.btn-outline:hover{background:var(--bone);color:var(--ink);transform:translateY(-2px)}
.btn-dark{background:var(--ink);color:var(--bone)}
.btn-dark:hover{background:var(--copper);transform:translateY(-2px)}
.btn-ghost{border:1px solid var(--ink);color:var(--ink)}
.btn-ghost:hover{background:var(--ink);color:var(--bone);transform:translateY(-2px)}
.btn-copper{background:var(--copper);color:var(--bone)}
.btn-copper:hover{background:var(--copper-2);transform:translateY(-2px);box-shadow:0 12px 28px rgba(168,90,58,.4)}

.hero-scroll{
  position:absolute;left:50%;bottom:2rem;transform:translateX(-50%);
  font-size:.7rem;letter-spacing:.3em;text-transform:uppercase;
  color:rgba(243,236,224,.7);
  display:flex;flex-direction:column;align-items:center;gap:.6rem;z-index:3;
}
.hero-scroll::after{
  content:'';width:1px;height:36px;background:rgba(243,236,224,.5);
  animation:line 2.4s var(--ease) infinite;transform-origin:top;
}
@keyframes line{
  0%{transform:scaleY(.2);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(.2);transform-origin:bottom}
}

@media (max-width:560px){
  .hero-scroll{display:none}
  .hero-tags{margin-top:1.8rem}
  .hero-tag{font-size:.62rem;letter-spacing:.12em;padding:.36rem .7rem}
}

/* =====================================================
   ABOUT
   ===================================================== */
.intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,5rem);
  align-items:center;
}
.intro-text .eyebrow{margin-bottom:1.4rem;display:block}
.intro-text h2{margin-bottom:1.6rem;max-width:14ch}
.intro-text p+p{margin-top:1rem}
.intro-text .actions{margin-top:2rem;display:flex;gap:.7rem;flex-wrap:wrap}
.intro-img{
  position:relative;aspect-ratio:4/5;overflow:hidden;border-radius:14px;
}
.intro-img img{width:100%;height:100%;object-fit:cover;filter:saturate(.96)}

@media (max-width:760px){
  .intro{grid-template-columns:1fr}
  .intro-img{aspect-ratio:5/4;order:-1}
}

/* =====================================================
   FAMILY STORY
   ===================================================== */
.family{
  background:var(--bone-2);
  position:relative;
  overflow:hidden;
}
.family-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,5rem);
  align-items:center;
}
.family-img{
  aspect-ratio:1/1;overflow:hidden;border-radius:14px;
  position:relative;
}
.family-img img{width:100%;height:100%;object-fit:cover;filter:saturate(.95)}
.family-img::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg, transparent 60%, rgba(22,20,15,.2));
}
.family-text .eyebrow{display:block;margin-bottom:1.3rem}
.family-text h2{margin-bottom:1.4rem}
.family-text .quote{
  font-family:var(--serif);
  font-size:clamp(1.4rem,2.2vw,1.8rem);
  font-style:italic;
  color:var(--ink);
  line-height:1.35;
  margin-bottom:1.4rem;
  font-weight:380;
}
.family-text .signature{
  margin-top:2rem;
  font-family:var(--serif);font-style:italic;font-size:1.4rem;
  color:var(--copper);
}
.family-text .signature small{
  display:block;
  font-family:var(--sans);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);margin-top:.4rem;font-style:normal;
}

@media (max-width:760px){
  .family-grid{grid-template-columns:1fr;gap:2.5rem}
  .family-img{aspect-ratio:5/4;max-width:480px;margin-inline:auto}
}

/* =====================================================
   DISHES
   ===================================================== */
.dishes-head{text-align:center;margin-bottom:4rem}
.dishes-head .eyebrow{display:block;margin-bottom:1rem}
.dishes-head h2{margin-bottom:1rem}
.dishes-head p{margin:0 auto;max-width:50ch}

.dishes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(1.4rem,2.4vw,2.4rem);
}
.dish{cursor:default}
.dish-img{aspect-ratio:4/5;overflow:hidden;border-radius:14px}
.dish-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 1.2s var(--ease-out), filter .5s;
  filter:saturate(.95);
}
.dish:hover .dish-img img{transform:scale(1.05);filter:saturate(1.05)}
.dish-info{margin-top:1.2rem}
.dish-info h3{font-style:italic;font-size:1.45rem;margin-bottom:.4rem;color:var(--ink)}
.dish-info h3 em{color:var(--copper)}
.dish-info p{font-size:.94rem;color:var(--muted);line-height:1.55}

.dishes-foot{text-align:center;margin-top:4rem}

@media (max-width:860px){.dishes{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.dishes{grid-template-columns:1fr;max-width:420px;margin-inline:auto}}

/* =====================================================
   GALLERY w/ filter tabs
   ===================================================== */
.gallery-head{text-align:center;margin-bottom:2rem}
.gallery-head .eyebrow{display:block;margin-bottom:1rem}

.gallery-tabs{
  display:flex;justify-content:center;gap:.4rem;flex-wrap:wrap;
  margin-bottom:2.5rem;
}
.gallery-tab{
  padding:.55rem 1.1rem;border-radius:999px;
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;font-weight:500;
  border:1px solid var(--line-strong);color:var(--ink-2);
  transition:.3s var(--ease);
}
.gallery-tab:hover{border-color:var(--ink);color:var(--ink)}
.gallery-tab.active{background:var(--ink);color:var(--bone);border-color:var(--ink)}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(.8rem,1.4vw,1.2rem);
}
/* wrapper gives us clean overflow-clipped zoom */
.gal-item{
  overflow:hidden;border-radius:14px;
  aspect-ratio:1/1;display:block;
}
.gal-item img,.gallery img{
  width:100%;height:100%;object-fit:cover;
  filter:saturate(.95);
  cursor:zoom-in;
  transition:filter .5s, transform .55s var(--ease-out);
  border-radius:0;
}
.gal-item img:hover,.gallery img:hover{
  filter:saturate(1.12) brightness(1.05);
  transform:scale(1.06);
}
.gallery img.hidden,.gal-item.hidden{display:none}

@media (max-width:760px){.gallery{grid-template-columns:repeat(2,1fr)}}

.lightbox{
  position:fixed;inset:0;background:rgba(22,20,15,.96);z-index:200;
  display:none;align-items:center;justify-content:center;padding:2rem;
}
.lightbox.open{display:flex;animation:fade .3s var(--ease)}
.lightbox img{max-width:92vw;max-height:88vh;border-radius:14px;box-shadow:0 30px 80px rgba(0,0,0,.5);user-select:none}
.lightbox button{
  position:absolute;width:48px;height:48px;border-radius:50%;
  background:rgba(243,236,224,.1);color:var(--bone);
  border:1px solid rgba(243,236,224,.2);
  display:grid;place-items:center;transition:background .2s;
}
.lightbox button:hover{background:rgba(243,236,224,.25)}
.lb-close{top:1.2rem;right:1.2rem;font-size:1.4rem;line-height:1}
.lb-prev{left:1.2rem;top:50%;transform:translateY(-50%);font-size:2rem;line-height:1}
.lb-next{right:1.2rem;top:50%;transform:translateY(-50%);font-size:2rem;line-height:1}
.lb-counter{
  position:absolute;bottom:1.4rem;left:50%;transform:translateX(-50%);
  font-size:.72rem;letter-spacing:.14em;color:rgba(243,236,224,.6);
  font-family:var(--sans);font-weight:600;
}
@media(max-width:640px){
  .lb-prev{left:.4rem}
  .lb-next{right:.4rem}
}
@keyframes fade{from{opacity:0}to{opacity:1}}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials{background:var(--bone-2)}
.testimonials-head{text-align:center;margin-bottom:4rem}
.testimonials-head .eyebrow{display:block;margin-bottom:1rem}

.tests-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:clamp(1.4rem,2.4vw,2.4rem);
}
/* 5 cards: 3 top row + 2 centred bottom */
.tests-grid .test:nth-child(4){ grid-column:1/2; }
.tests-grid .test:nth-child(5){ grid-column:2/3; }
@media (max-width:860px){
  .tests-grid .test:nth-child(4),
  .tests-grid .test:nth-child(5){ grid-column:auto; }
}
.test{
  background:var(--bone-2);
  border:1px solid var(--line);
  border-radius:16px;
  padding:2.2rem 2rem 2rem;
  display:flex;flex-direction:column;align-items:center;text-align:center;
}
.test::before{display:none}
.test-avatar{
  width:3rem;height:3rem;border-radius:50%;
  background:var(--copper);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:1.2rem;font-weight:400;
  letter-spacing:0;flex-shrink:0;
  margin-bottom:1rem;
}
.test-stars{
  font-size:.88rem;letter-spacing:.08em;color:var(--copper);
  margin-bottom:.8rem;
}
.test p{
  font-family:var(--serif);font-style:italic;
  font-size:1.05rem;line-height:1.55;color:var(--ink);
  margin-bottom:1.4rem;font-weight:380;
  max-width:26ch;
}
.test cite{
  margin-top:auto;
  font-family:var(--sans);font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--muted);font-style:normal;font-weight:500;
}
.test-via{
  display:block;font-size:.6rem;letter-spacing:.1em;opacity:.65;
  text-transform:uppercase;margin-top:.2rem;
}
.tests-foot{
  text-align:center;margin-top:2.8rem;
}

@media (max-width:860px){.tests-grid{grid-template-columns:1fr;max-width:560px;margin-inline:auto}}

/* =====================================================
   VISIT  + reservation form
   ===================================================== */
.visit{
  background:var(--ink);
  color:var(--bone);
  padding:clamp(4rem,9vw,7rem) 1.5rem;
}
.visit .wrap{text-align:center}
.visit h2, .visit .eyebrow{color:var(--bone)}
.visit .eyebrow{color:rgba(243,236,224,.6)}
.visit h2{margin:1rem auto 1.4rem;max-width:18ch;font-style:normal}
.visit h2 em{color:var(--copper-2)}
.visit-lead{max-width:48ch;margin:0 auto;color:rgba(243,236,224,.78);font-size:1.05rem}

.visit-grid{
  margin-top:3.5rem;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(243,236,224,.15);
  border:1px solid rgba(243,236,224,.15);
  border-radius:14px;
  overflow:hidden;
}
.visit-cell{
  background:var(--ink);
  padding:2.2rem 1.4rem;
  text-align:center;
}
.visit-cell .lbl{
  font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;
  color:rgba(243,236,224,.55);
  margin-bottom:.8rem;display:block;
}
.visit-cell .val{
  font-family:var(--serif);font-size:1.2rem;color:var(--bone);line-height:1.4;
  font-style:italic;
}
.visit-cell a.val{transition:color .3s}
.visit-cell a.val:hover{color:var(--copper-2)}

@media (max-width:720px){.visit-grid{grid-template-columns:1fr}}

/* =====================================================
   RESERVATION  — mini app card
   ===================================================== */
.reserve-card{
  max-width:640px;margin:3.5rem auto 0;
  background:var(--bone);
  color:var(--ink);
  border-radius:22px;
  text-align:left;
  box-shadow:
    0 1px 0 rgba(243,236,224,.1) inset,
    0 30px 80px -20px rgba(0,0,0,.5),
    0 10px 30px -10px rgba(0,0,0,.3);
  overflow:hidden;
  border:1px solid rgba(243,236,224,.1);
}
.reserve-header{
  padding:1.4rem 1.6rem;
  display:flex;align-items:center;gap:1rem;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg, var(--bone), var(--bone-2));
}
.reserve-icon{
  width:44px;height:44px;border-radius:12px;
  background:var(--copper);color:var(--bone);
  display:grid;place-items:center;flex-shrink:0;
}
.reserve-icon svg{width:22px;height:22px}
.reserve-header h3{
  font-family:var(--serif);font-style:italic;
  font-size:1.4rem;line-height:1.1;color:var(--ink);
  margin-bottom:.15rem;
}
.reserve-header p{
  font-size:.82rem;color:var(--muted);margin:0;
}

.reserve-body{
  padding:1.6rem;
  display:flex;flex-direction:column;gap:1.6rem;
}

.reserve-section .reserve-label{
  display:flex;align-items:center;gap:.5rem;
  font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);font-weight:600;
  margin-bottom:.7rem;
}
.reserve-section .reserve-label .step{
  width:18px;height:18px;border-radius:50%;
  background:var(--ink);color:var(--bone);
  display:grid;place-items:center;
  font-size:.62rem;font-weight:700;letter-spacing:0;
}

/* Chips (date / time) */
.reserve-chips{
  display:flex;gap:.4rem;flex-wrap:nowrap;
  overflow-x:auto;scrollbar-width:none;
  padding-bottom:.2rem;
  scroll-snap-type:x proximity;
}
.reserve-chips::-webkit-scrollbar{display:none}
.rchip{
  flex-shrink:0;
  padding:.6rem 1rem;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:transparent;color:var(--ink);
  font-size:.86rem;font-weight:500;
  transition:.25s var(--ease);
  white-space:nowrap;
  scroll-snap-align:start;
  cursor:pointer;
}
.rchip:hover{border-color:var(--ink)}
.rchip.active{
  background:var(--ink);color:var(--bone);border-color:var(--ink);
}
.rchip.active small{opacity:.7}
.rchip small{display:block;font-size:.66rem;letter-spacing:.06em;color:var(--muted);font-weight:400}
.rchip.active small{color:rgba(243,236,224,.6)}
.rchip-input{
  padding:0;position:relative;
  display:inline-flex;align-items:stretch;
}
.rchip-input input[type="date"]{
  border:none;background:transparent;
  padding:.6rem 1rem;
  font-family:inherit;font-size:.86rem;font-weight:500;
  color:var(--ink);
  cursor:pointer;
}
.rchip-input input[type="date"]:focus{outline:none}

/* Time chips: wrap so all slots are always visible, no scroll needed */
.reserve-times{flex-wrap:wrap}

/* Lunch / Dinner group label */
.time-group-label{
  width:100%;
  font-size:.64rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);font-weight:600;font-family:var(--sans);
  padding:.1rem 0 .2rem;
}

/* Party segments */
.reserve-segments{
  display:flex;gap:.3rem;
  background:var(--bone-2);
  padding:.3rem;
  border-radius:14px;
  border:1px solid var(--line);
}
.rseg{
  flex:1;
  padding:.7rem .4rem;border-radius:10px;
  background:transparent;color:var(--ink);
  font-size:.95rem;font-weight:600;
  transition:.25s var(--ease);
  cursor:pointer;
  font-family:var(--serif);
}
.rseg:hover{background:rgba(22,20,15,.06)}
.rseg.active{
  background:var(--ink);color:var(--bone);
  box-shadow:0 4px 12px rgba(22,20,15,.2);
}

/* Seating */
.reserve-seats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:.5rem;
}
.rseat{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.4rem;
  padding:.9rem .4rem;
  border-radius:14px;
  border:1px solid var(--line-strong);
  background:transparent;color:var(--ink);
  font-size:.74rem;font-weight:600;letter-spacing:.04em;
  transition:.25s var(--ease);
  cursor:pointer;
  text-align:center;
}
.rseat svg{width:24px;height:24px;color:var(--muted);transition:color .25s}
.rseat:hover{border-color:var(--ink)}
.rseat:hover svg{color:var(--ink)}
.rseat.active{
  background:var(--ink);color:var(--bone);border-color:var(--ink);
}
.rseat.active svg{color:var(--copper-2)}

/* Optional details */
.reserve-optional{
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--bone-2);
  overflow:hidden;
}
.reserve-optional summary{
  list-style:none;cursor:pointer;
  padding:.85rem 1.1rem;
  font-size:.82rem;letter-spacing:.1em;
  color:var(--ink-2);font-weight:500;
  display:flex;align-items:center;gap:.5rem;
  transition:background .25s;
}
.reserve-optional summary::-webkit-details-marker{display:none}
.reserve-optional summary::before{
  content:'+';font-size:1.1rem;color:var(--copper);transition:transform .3s;display:inline-block;
}
.reserve-optional[open] summary::before{content:'−'}
.reserve-optional summary:hover{background:rgba(22,20,15,.04)}
.reserve-optional-body{
  padding:0 1.1rem 1.1rem;
  display:flex;flex-direction:column;gap:.6rem;
}
.reserve-optional-body input,
.reserve-optional-body textarea{
  width:100%;
  background:var(--bone);
  border:1px solid var(--line-strong);
  border-radius:10px;
  color:var(--ink);
  padding:.7rem .9rem;
  font-size:.92rem;font-family:var(--sans);
  transition:border-color .25s;
}
.reserve-optional-body input:focus,
.reserve-optional-body textarea:focus{
  outline:none;border-color:var(--copper);
}
.reserve-optional-body input::placeholder,
.reserve-optional-body textarea::placeholder{color:var(--muted)}
.reserve-optional-body textarea{resize:vertical;min-height:60px}

/* Footer summary + submit */
.reserve-footer{
  padding:1.2rem 1.6rem 1.6rem;
  border-top:1px solid var(--line);
  background:var(--bone-2);
}
.reserve-summary{
  display:flex;align-items:center;gap:.6rem;flex-wrap:wrap;
  font-size:.88rem;color:var(--ink);
  margin-bottom:1rem;
  min-height:1.5rem;
}
.reserve-summary .pill{
  display:inline-flex;align-items:center;gap:.35rem;
  padding:.3rem .65rem;border-radius:999px;
  background:var(--bone);border:1px solid var(--line);
  font-size:.78rem;font-weight:500;color:var(--ink);
}
.reserve-summary .pill svg{width:13px;height:13px;color:var(--copper)}
.reserve-summary .empty{color:var(--muted);font-style:italic;font-size:.84rem}

.reserve-submit{
  width:100%;justify-content:center;
  padding:1.1rem;border-radius:14px;
  background:var(--copper);color:var(--bone);
  font-size:.84rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;
  border:none;cursor:pointer;
  display:inline-flex;align-items:center;gap:.6rem;justify-content:center;
  transition:background .3s, transform .25s, box-shadow .3s;
  box-shadow:0 10px 24px rgba(168,90,58,.4);
}
.reserve-submit:hover:not(:disabled){
  background:var(--copper-2);transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(168,90,58,.5);
}
.reserve-submit:disabled{
  background:var(--line-strong);color:var(--muted);cursor:not-allowed;box-shadow:none;
}
.reserve-submit svg{width:18px;height:18px}
.reserve-note{
  text-align:center;margin-top:.9rem;font-size:.72rem;letter-spacing:.06em;
  color:var(--muted);font-weight:400;
}

@media (max-width:520px){
  .reserve-header{padding:1.1rem 1.2rem}
  .reserve-body{padding:1.2rem;gap:1.3rem}
  .reserve-footer{padding:1rem 1.2rem 1.2rem}
  .reserve-seats{grid-template-columns:repeat(2,1fr)}
  .rseg{padding:.6rem .3rem;font-size:.88rem}
  .reserve-header h3{font-size:1.2rem}
}

/* =====================================================
   ORDER PAGE  (narudzba.html)
   ===================================================== */
/* Non-hero pages: nav is always in "scrolled" (dark-on-light) state */
.menu-body .nav,
.order-body .nav{
  background:rgba(243,236,224,.96);
  backdrop-filter:saturate(180%) blur(16px);
  -webkit-backdrop-filter:saturate(180%) blur(16px);
  border-bottom-color:var(--line);
  color:var(--ink);
}

.order-body{background:var(--bone)}

.order-hero{
  padding:9rem 1.5rem 3rem;
  text-align:center;
  border-bottom:1px solid var(--line);
}
.order-hero .eyebrow{display:block;margin-bottom:1rem}
.order-hero h1{font-size:clamp(2.4rem,6vw,4.4rem);margin-bottom:1rem}
.order-hero h1 em{color:var(--copper)}
.order-hero p{max-width:50ch;margin:0 auto;color:var(--muted)}

.delivery-banner{
  display:flex;align-items:center;justify-content:center;gap:1.2rem;flex-wrap:wrap;
  padding:1rem;background:var(--bone-2);
  border-bottom:1px solid var(--line);
  font-size:.82rem;letter-spacing:.08em;color:var(--ink-2);
}
.delivery-banner .badge{
  display:inline-flex;align-items:center;gap:.4rem;
  font-weight:600;
}
.delivery-banner .badge svg{width:14px;height:14px;color:var(--copper)}
.delivery-banner .sep{width:4px;height:4px;border-radius:50%;background:var(--muted);opacity:.5}

/* Layout */
.order-layout{
  width:min(1320px,94vw);margin:3rem auto 5rem;
  display:grid;grid-template-columns:1fr 380px;
  gap:2.4rem;
  align-items:start;
}
@media (max-width:980px){
  .order-layout{grid-template-columns:1fr;gap:1.5rem}
}

/* MENU SIDE */
.order-menu{display:flex;flex-direction:column;gap:1rem;min-width:0}

.order-cat-nav{
  position:sticky;top:64px;z-index:40;
  display:flex;gap:.4rem;overflow-x:auto;scrollbar-width:none;
  padding:.6rem 0;
  background:rgba(243,236,224,.95);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  margin-bottom:1rem;
}
.order-cat-nav::-webkit-scrollbar{display:none}
.order-cat-nav button{
  flex-shrink:0;
  padding:.55rem 1rem;border-radius:999px;
  border:1px solid var(--line-strong);background:transparent;color:var(--ink-2);
  font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;font-weight:600;
  transition:.25s var(--ease);white-space:nowrap;cursor:pointer;
}
.order-cat-nav button:hover{border-color:var(--ink);color:var(--ink)}
.order-cat-nav button.active{background:var(--ink);color:var(--bone);border-color:var(--ink)}

.order-section{scroll-margin-top:140px}
.order-section-head{
  font-family:var(--serif);font-style:italic;
  font-size:clamp(1.5rem,2.6vw,1.9rem);
  color:var(--ink);
  margin:1.5rem 0 1rem;
  padding-bottom:.6rem;border-bottom:1px solid var(--line);
  display:flex;align-items:baseline;justify-content:space-between;gap:1rem;
}
.order-section-head small{
  font-family:var(--sans);font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--muted);font-style:normal;font-weight:500;
}

.order-items{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.9rem;
}
@media (max-width:560px){.order-items{grid-template-columns:1fr}}

.order-item{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:.9rem;
  background:var(--bone);
  border:1px solid var(--line);
  border-radius:14px;
  padding:.7rem;
  transition:border-color .25s, transform .25s;
}
.order-item:hover{border-color:var(--ink-2);transform:translateY(-2px)}
.order-item.no-img{grid-template-columns:1fr}
.order-item-img{
  width:80px;height:80px;border-radius:10px;overflow:hidden;
  background:var(--bone-2);
}
.order-item-img img{width:100%;height:100%;object-fit:cover}
.order-item-body{display:flex;flex-direction:column;gap:.3rem;min-width:0}
.order-item-body h4{
  font-family:var(--serif);font-size:1.05rem;font-weight:500;color:var(--ink);
  line-height:1.2;
}
.order-item-body .desc{
  font-size:.78rem;line-height:1.4;color:var(--muted);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.order-item-foot{
  margin-top:auto;
  display:flex;align-items:center;justify-content:space-between;gap:.5rem;
}
.order-item-price{
  font-family:var(--serif);font-size:1.05rem;font-weight:500;color:var(--ink);
}
.order-item-add{
  width:34px;height:34px;border-radius:50%;
  background:var(--ink);color:var(--bone);
  display:grid;place-items:center;
  font-size:1.3rem;line-height:1;font-weight:300;
  cursor:pointer;
  transition:background .25s, transform .25s;
}
.order-item-add:hover{background:var(--copper);transform:scale(1.08)}
.order-item-qty{
  display:flex;align-items:center;gap:.5rem;
  background:var(--ink);color:var(--bone);
  border-radius:999px;
  padding:.2rem;
}
.order-item-qty button{
  width:28px;height:28px;border-radius:50%;
  display:grid;place-items:center;
  color:var(--bone);font-size:1.1rem;line-height:1;
  transition:background .25s;
  cursor:pointer;
}
.order-item-qty button:hover{background:rgba(243,236,224,.15)}
.order-item-qty span{
  font-size:.88rem;font-weight:600;color:var(--bone);min-width:1ch;text-align:center;
}

/* CART SIDE */
.order-cart{
  position:sticky;top:74px;
  background:var(--ink);color:var(--bone);
  border-radius:18px;
  padding:1.5rem;
  display:flex;flex-direction:column;gap:1.2rem;
  max-height:calc(100vh - 100px);
  overflow-y:auto;
  scrollbar-width:thin;scrollbar-color:rgba(243,236,224,.25) transparent;
}
.order-cart::-webkit-scrollbar{width:6px}
.order-cart::-webkit-scrollbar-thumb{background:rgba(243,236,224,.25);border-radius:6px}

.order-cart h3{
  font-family:var(--serif);font-style:italic;
  font-size:1.4rem;color:var(--bone);
  display:flex;align-items:center;justify-content:space-between;
}
.order-cart h3 .count{
  font-family:var(--sans);font-style:normal;
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(243,236,224,.55);font-weight:500;
}

.cart-empty{
  text-align:center;padding:2rem 0;
  color:rgba(243,236,224,.5);
  font-size:.88rem;
}
.cart-empty svg{width:38px;height:38px;margin-bottom:.7rem;opacity:.5}

.cart-items{display:flex;flex-direction:column;gap:.7rem}
.cart-item{
  display:grid;grid-template-columns:auto 1fr auto;
  gap:.7rem;align-items:center;
  padding:.6rem 0;border-bottom:1px solid rgba(243,236,224,.12);
}
.cart-item:last-child{border-bottom:none}
.cart-item-qty{
  display:flex;align-items:center;gap:.3rem;
  background:rgba(243,236,224,.08);
  border-radius:999px;padding:.15rem;
}
.cart-item-qty button{
  width:22px;height:22px;border-radius:50%;
  display:grid;place-items:center;color:var(--bone);font-size:.95rem;line-height:1;
  cursor:pointer;
}
.cart-item-qty button:hover{background:rgba(243,236,224,.15)}
.cart-item-qty span{font-size:.78rem;font-weight:600;min-width:1ch;text-align:center}
.cart-item-name{font-size:.85rem;line-height:1.3;color:var(--bone);min-width:0}
.cart-item-name small{display:block;color:rgba(243,236,224,.5);font-size:.7rem}
.cart-item-price{font-size:.86rem;color:var(--bone);white-space:nowrap;font-weight:500}

.cart-totals{
  display:flex;flex-direction:column;gap:.4rem;
  padding-top:.8rem;border-top:1px solid rgba(243,236,224,.15);
  font-size:.86rem;
}
.cart-totals .row{display:flex;justify-content:space-between;color:rgba(243,236,224,.78)}
.cart-totals .row.total{
  font-family:var(--serif);font-size:1.3rem;color:var(--bone);
  margin-top:.4rem;padding-top:.6rem;border-top:1px solid rgba(243,236,224,.15);
}
.cart-totals .row .free{color:#7cda9c}

.checkout-section{
  display:flex;flex-direction:column;gap:.8rem;
}
.checkout-section h4{
  font-family:var(--serif);font-size:1.05rem;font-style:italic;color:var(--bone);
  margin-bottom:.2rem;
}
.checkout-field{display:flex;flex-direction:column;gap:.3rem}
.checkout-field label{
  font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(243,236,224,.55);font-weight:600;
}
.checkout-field input,
.checkout-field textarea{
  background:rgba(243,236,224,.06);
  border:1px solid rgba(243,236,224,.18);
  border-radius:10px;
  color:var(--bone);
  padding:.65rem .85rem;
  font-size:.88rem;font-family:var(--sans);
  transition:border-color .25s, background .25s;
}
.checkout-field input:focus,
.checkout-field textarea:focus{
  outline:none;border-color:var(--copper-2);background:rgba(243,236,224,.1);
}
.checkout-field input::placeholder,
.checkout-field textarea::placeholder{color:rgba(243,236,224,.4)}
.checkout-field textarea{resize:vertical;min-height:50px}

.payment-options{display:flex;gap:.4rem}
.payment-options label{
  flex:1;cursor:pointer;
  border:1px solid rgba(243,236,224,.18);border-radius:10px;
  padding:.6rem .5rem;text-align:center;
  font-size:.78rem;color:rgba(243,236,224,.8);
  transition:.25s;font-weight:500;
}
.payment-options input{position:absolute;opacity:0;pointer-events:none}
.payment-options label:has(input:checked){
  background:var(--copper);color:var(--bone);border-color:var(--copper);
}

.checkout-submit{
  width:100%;
  padding:1rem;border-radius:12px;
  background:var(--copper);color:var(--bone);
  font-size:.82rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;
  border:none;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  transition:background .25s, transform .25s, box-shadow .25s;
  box-shadow:0 8px 22px rgba(168,90,58,.4);
}
.checkout-submit:hover:not(:disabled){
  background:var(--copper-2);transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(168,90,58,.5);
}
.checkout-submit:disabled{
  background:rgba(243,236,224,.15);color:rgba(243,236,224,.4);
  cursor:not-allowed;box-shadow:none;
}
.checkout-submit svg{width:16px;height:16px}

.checkout-note{
  text-align:center;font-size:.7rem;letter-spacing:.08em;
  color:rgba(243,236,224,.5);
}

/* Address autocomplete container */
.gm-style-pac-container,
.pac-container{
  border-radius:10px !important;
  margin-top:4px;
  box-shadow:0 10px 30px rgba(0,0,0,.4) !important;
  background:var(--ink) !important;
  border:1px solid rgba(243,236,224,.15) !important;
  font-family:var(--sans) !important;
}
.pac-item{
  padding:.6rem .8rem !important;
  color:var(--bone) !important;
  border-color:rgba(243,236,224,.08) !important;
  font-size:.86rem !important;
  cursor:pointer;
}
.pac-item:hover, .pac-item-selected{background:rgba(243,236,224,.1) !important}
.pac-item-query{color:var(--bone) !important;font-size:.88rem !important}
.pac-matched{color:var(--copper-2) !important}
.pac-icon{filter:invert(.9) sepia(.3) hue-rotate(-20deg)}

/* Mobile cart bar */
.cart-mobile-bar{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:55;
  background:var(--ink);color:var(--bone);
  padding:.8rem 1rem;
  padding-bottom:max(.8rem, env(safe-area-inset-bottom));
  box-shadow:0 -10px 30px rgba(0,0,0,.3);
}
.cart-mobile-bar button{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;
  background:var(--copper);color:var(--bone);
  padding:.85rem 1.2rem;border-radius:12px;
  font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;font-weight:600;
}
.cart-mobile-bar button .total{font-size:1rem;letter-spacing:0;text-transform:none;font-family:var(--serif);font-style:italic}
.cart-mobile-bar.hidden{display:none !important}

/* Mobile cart drawer */
@media (max-width:980px){
  .order-cart{
    position:fixed;
    top:auto;bottom:0;left:0;right:0;
    border-radius:18px 18px 0 0;
    max-height:85vh;
    transform:translateY(100%);
    transition:transform .4s var(--ease);
    z-index:100;
    margin:0;
  }
  .order-cart.open{transform:translateY(0)}
  .order-cart::before{
    content:'';display:block;
    width:40px;height:4px;border-radius:2px;
    background:rgba(243,236,224,.3);
    margin:0 auto 1rem;
  }
  .cart-mobile-bar{display:block}
  .cart-mobile-bar.empty button{
    background:transparent;color:rgba(243,236,224,.5);
    border:1px solid rgba(243,236,224,.15);
    cursor:default;
  }
  .order-cat-nav{top:60px}
  body{padding-bottom:5.4rem}
}

/* Order page delivery map */
.order-map{margin:0 auto 4rem;width:min(1200px,94vw)}
.order-map .map-wrap{border-radius:14px;overflow:hidden;position:relative}
.order-map iframe{width:100%;height:380px;border:0;display:block;filter:grayscale(.5) contrast(1.05)}
.order-map-overlay{
  position:absolute;top:1rem;left:1rem;z-index:3;
  background:var(--ink);color:var(--bone);
  padding:.9rem 1.2rem;border-radius:12px;
  font-size:.8rem;letter-spacing:.04em;
  box-shadow:0 10px 24px rgba(0,0,0,.3);
  max-width:240px;
}
.order-map-overlay strong{display:block;font-family:var(--serif);font-style:italic;font-size:1rem;margin-bottom:.2rem}
.order-map-overlay small{display:block;color:rgba(243,236,224,.7);margin-top:.2rem;font-size:.72rem}

/* Order confirmation overlay */
.order-toast{
  position:fixed;top:5rem;left:50%;transform:translateX(-50%) translateY(-20px);
  z-index:120;
  background:var(--ink);color:var(--bone);
  padding:.9rem 1.2rem;border-radius:12px;
  box-shadow:0 14px 30px rgba(0,0,0,.3);
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:.86rem;
  opacity:0;pointer-events:none;
  transition:opacity .3s, transform .3s;
}
.order-toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
.order-toast svg{width:18px;height:18px;color:var(--copper-2)}

/* =====================================================
   FAQ
   ===================================================== */
.faq-head{text-align:center;margin-bottom:3rem}
.faq-head .eyebrow{display:block;margin-bottom:1rem}

.faq-list{max-width:760px;margin-inline:auto}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item:first-child{border-top:1px solid var(--line)}
.faq-q{
  width:100%;text-align:left;
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding:1.6rem 0;
  font-family:var(--serif);font-size:1.2rem;color:var(--ink);
  font-weight:400;
  cursor:pointer;
  transition:color .3s;
}
.faq-q:hover{color:var(--copper)}
.faq-q .ic{
  flex-shrink:0;width:24px;height:24px;
  position:relative;
}
.faq-q .ic::before,
.faq-q .ic::after{
  content:'';position:absolute;top:50%;left:0;right:0;
  height:1px;background:currentColor;
  transition:transform .35s var(--ease);
}
.faq-q .ic::after{transform:rotate(90deg)}
.faq-item.open .faq-q .ic::after{transform:rotate(0)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .5s var(--ease);
}
.faq-a-inner{padding:0 0 1.6rem;color:var(--muted);max-width:60ch}

/* =====================================================
   MAP
   ===================================================== */
.map{
  padding:0 clamp(1.2rem,3vw,2.4rem) clamp(2rem,4vw,3rem);
  position:relative;
}
.map-wrap{position:relative;border-radius:14px;overflow:hidden}
.map iframe{
  width:100%;height:440px;border:0;display:block;
  filter:grayscale(.5) contrast(1.05) brightness(.96);
}
.map-cta{
  position:absolute;bottom:1.2rem;right:1.2rem;z-index:3;
  background:var(--ink);color:var(--bone);
  padding:.85rem 1.3rem;border-radius:999px;
  font-size:.76rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;
  display:inline-flex;align-items:center;gap:.55rem;
  box-shadow:0 10px 24px rgba(0,0,0,.3);
  transition:transform .3s, background .3s;
}
.map-cta:hover{background:var(--copper);transform:translateY(-2px)}
.map-cta svg{width:16px;height:16px}

/* =====================================================
   FOOTER
   ===================================================== */
footer{
  background:var(--ink);
  color:rgba(243,236,224,.7);
  padding:4rem 0 2rem;
  border-top:1px solid rgba(243,236,224,.1);
}

.foot-mid{
  text-align:center;padding-top:3rem;
}
.foot-brand{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--serif);font-size:1.6rem;font-style:italic;color:var(--bone);
  margin-bottom:1rem;
}
.foot-brand .brand-mark{width:30px;height:30px;font-size:1rem}
.foot-links{
  display:flex;gap:1.6rem;justify-content:center;flex-wrap:wrap;
  margin:1rem 0 1.6rem;
  font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;
}
.foot-links a{transition:color .3s}
.foot-links a:hover{color:var(--copper-2)}
.foot-bottom{
  font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(243,236,224,.45);margin-top:1rem;
}

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.fab{
  position:fixed;bottom:1.4rem;right:1.4rem;z-index:60;
  width:58px;height:58px;border-radius:50%;
  background:#25D366;color:#fff;
  display:grid;place-items:center;
  box-shadow:0 12px 26px rgba(37,211,102,.45);
  transition:transform .3s var(--ease), bottom .3s;
}
.fab::before{
  content:'';position:absolute;inset:0;border-radius:50%;background:#25D366;
  opacity:.45;z-index:-1;animation:fabPulse 2.2s infinite;
}
@keyframes fabPulse{
  0%{transform:scale(1);opacity:.45}
  100%{transform:scale(1.6);opacity:0}
}
.fab:hover{transform:scale(1.08)}
.fab svg{width:28px;height:28px}

@media (max-width:760px){
  .fab{bottom:5rem}
}

/* =====================================================
   APP-STYLE MOBILE BOTTOM NAV
   ===================================================== */
.mobile-bar{display:none}   /* legacy — replaced by .app-nav */

.app-nav{
  display:none;
  position:fixed;bottom:0;left:0;right:0;
  z-index:90;
  background:rgba(18,15,10,.97);
  backdrop-filter:saturate(200%) blur(24px);
  -webkit-backdrop-filter:saturate(200%) blur(24px);
  border-top:1px solid rgba(243,236,224,.07);
}
.app-nav-inner{
  display:grid;
  grid-template-columns:1fr 1fr 1.15fr 1fr;
  align-items:end;
  padding:0 .4rem;
  padding-bottom:max(.55rem, env(safe-area-inset-bottom));
}
.app-tab{
  display:flex;flex-direction:column;align-items:center;
  gap:.22rem;
  padding:.7rem .1rem .5rem;
  color:rgba(243,236,224,.32);
  font-family:var(--sans);
  font-size:.57rem;letter-spacing:.09em;text-transform:uppercase;font-weight:600;
  transition:color .2s;
  -webkit-tap-highlight-color:transparent;
  user-select:none;
}
.app-tab svg{
  width:22px;height:22px;
  stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round;fill:none;
  flex-shrink:0;
  transition:transform .18s var(--ease), stroke-width .18s;
}
.app-tab:active svg{transform:scale(.82)}
.app-tab.active{color:rgba(243,236,224,.95)}
.app-tab.active svg{stroke-width:2.3}

/* Reserve CTA pill — floats above the bar */
.app-tab--cta{
  color:var(--copper-2);
  padding-top:0;
  gap:.18rem;
}
.app-tab-pill{
  width:56px;height:56px;
  border-radius:18px;
  background:var(--copper);
  display:grid;place-items:center;
  box-shadow:0 8px 24px rgba(168,90,58,.6), 0 2px 8px rgba(0,0,0,.4);
  margin-top:-16px;
  transition:transform .18s var(--ease), background .18s, box-shadow .18s;
}
.app-tab-pill svg{
  width:24px;height:24px;
  stroke:#fff;stroke-width:1.8;fill:none;
  stroke-linecap:round;stroke-linejoin:round;
}
.app-tab--cta:active .app-tab-pill{
  transform:scale(.88);
  background:var(--copper-2);
  box-shadow:0 4px 14px rgba(168,90,58,.4);
}

@media(max-width:640px){
  /* Show app nav */
  .app-nav{display:block}
  body{padding-bottom:calc(64px + max(.55rem, env(safe-area-inset-bottom)))}
  /* Strip top nav to essentials — logo + lang + dark mode only */
  .burger{display:none}
  .drawer{display:none}
  .nav-cta{display:none}
  /* Hide floating WhatsApp (Reserve tab replaces it) */
  .fab{display:none}
  /* Back-to-top above app nav */
  #back-top{bottom:5.8rem;right:1rem}
}

/* =====================================================
   REVEAL
   ===================================================== */
.reveal{
  opacity:0;transform:translateY(24px);
  transition:opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}
.reveal.d2{transition-delay:.16s}
.reveal.d3{transition-delay:.24s}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;transition-duration:.01ms !important}
  .reveal{opacity:1 !important;transform:none !important}
}

/* =====================================================
   ====== MENU PAGE ====================================
   ===================================================== */
.menu-body{background:var(--bone)}

.menu-hero{
  padding:9rem 1.5rem 4rem;
  text-align:center;
  border-bottom:1px solid var(--line);
}
.menu-hero .eyebrow{display:block;margin-bottom:1.2rem}
.menu-hero h1{font-size:clamp(2.6rem,7vw,5rem);margin-bottom:1.2rem}
.menu-hero h1 em{color:var(--copper)}
.menu-hero p{max-width:50ch;margin:0 auto;color:var(--muted)}
.menu-hero-actions{
  margin-top:2rem;display:flex;gap:.6rem;justify-content:center;flex-wrap:wrap;
}
.menu-hero-actions .ic-btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.6rem 1rem;border-radius:999px;
  border:1px solid var(--line-strong);font-size:.72rem;letter-spacing:.16em;
  text-transform:uppercase;font-weight:500;color:var(--ink);
  transition:.3s;
}
.menu-hero-actions .ic-btn:hover{background:var(--ink);color:var(--bone);border-color:var(--ink)}
.menu-hero-actions svg{width:14px;height:14px}

/* Sticky category nav */
.cat-nav{
  position:sticky;top:60px;z-index:55;
  background:rgba(243,236,224,.95);
  backdrop-filter:saturate(180%) blur(16px);
  -webkit-backdrop-filter:saturate(180%) blur(16px);
  border-bottom:1px solid var(--line);
}
.cat-nav-inner{
  width:min(1100px,92vw);margin-inline:auto;
  display:flex;gap:0;overflow-x:auto;scrollbar-width:none;
  padding:.4rem 0;
}
.cat-nav-inner::-webkit-scrollbar{display:none}
.cat-nav-inner a{
  flex-shrink:0;
  padding:.45rem 1rem;
  margin:.28rem .2rem;
  font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted);
  border-radius:99px;
  transition:color .25s, background .25s;
  white-space:nowrap;font-weight:500;
}
.cat-nav-inner a:hover{color:var(--ink)}
.cat-nav-inner a.active{
  color:var(--bone);
  background:var(--copper);
}

.menu-wrap{
  width:min(820px,92vw);margin:5rem auto 6rem;
  display:flex;flex-direction:column;gap:5rem;
}
.menu-section{scroll-margin-top:110px}
@media(max-width:480px){.cat-nav{top:57px}.menu-section{scroll-margin-top:105px}}
.menu-section-head{
  text-align:center;margin-bottom:3rem;
  padding-bottom:1.4rem;border-bottom:1px solid var(--line);
}
.menu-section-head .eyebrow{display:block;margin-bottom:.8rem;color:var(--copper)}
.menu-section-head h2{font-size:clamp(1.8rem,3.4vw,2.4rem);font-style:italic}

.menu-items{display:flex;flex-direction:column}
.menu-item{
  display:grid;grid-template-columns:1fr auto;
  align-items:baseline;gap:.3rem 1.4rem;
  padding:1.4rem 0;border-bottom:1px solid var(--line);
}
.menu-item:last-child{border-bottom:none}
.menu-item h4{
  font-family:var(--serif);font-size:1.25rem;
  font-weight:400;color:var(--ink);
}
.menu-item h4 em{
  font-style:normal;font-size:.62em;letter-spacing:.22em;text-transform:uppercase;
  color:var(--copper);margin-left:.6rem;font-weight:500;vertical-align:middle;
}
.menu-item .desc{
  grid-column:1/2;margin-top:.3rem;
  color:var(--muted);font-size:.92rem;line-height:1.55;max-width:54ch;
}
.menu-item .price{
  grid-column:2/3;grid-row:1/2;
  font-family:var(--serif);font-size:1.2rem;color:var(--ink);white-space:nowrap;
}

/* =====================================================
   OPEN / CLOSED BADGE
   ===================================================== */
.open-dot{
  display:inline-block;width:.45rem;height:.45rem;border-radius:50%;
  margin-right:.4rem;vertical-align:middle;position:relative;top:-1px;flex-shrink:0;
}
.open-dot.is-open{
  background:#4ade80;
  box-shadow:0 0 0 3px rgba(74,222,128,.25);
  animation:pulse-open 2.4s ease-in-out infinite;
}
.open-dot.is-closed{ background:rgba(255,255,255,.35); }
@keyframes pulse-open{
  0%,100%{ box-shadow:0 0 0 3px rgba(74,222,128,.25); }
  50%{ box-shadow:0 0 0 6px rgba(74,222,128,.08); }
}

/* =====================================================
   404 PAGE
   ===================================================== */
.not-found{
  min-height:calc(100vh - 64px);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:4rem 1.5rem;
}
.not-found-num{
  display:block;font-family:var(--serif);
  font-size:clamp(6rem,20vw,11rem);line-height:1;
  color:var(--line);margin-bottom:1.2rem;
}
.not-found h1{ font-size:clamp(1.4rem,3vw,2rem);margin-bottom:.8rem; }
.not-found p{ color:var(--muted);max-width:36ch;margin:0 auto 2.5rem;line-height:1.65; }
.not-found-cta{ display:flex;gap:1rem;flex-wrap:wrap;justify-content:center; }

.menu-type-label{
  font-family:var(--sans);font-size:.62rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--copper);font-weight:600;
  padding:1.6rem 0 .2rem;
  border-top:1px solid var(--line);
  margin-top:.2rem;
}
.menu-type-label:first-child{border-top:none;padding-top:0;margin-top:0}

.menu-foot{
  text-align:center;margin-top:1rem;
  padding:3.5rem 1.5rem;border-top:1px solid var(--line);
}
.menu-foot h3{font-style:italic;margin-bottom:1rem}
.menu-foot p{color:var(--muted);max-width:46ch;margin:0 auto 2rem}
.menu-foot small{
  display:block;margin-top:2.4rem;color:var(--muted);
  font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;
}

@media (max-width:520px){
  .menu-item{grid-template-columns:1fr;gap:.2rem}
  .menu-item h4{font-size:1.15rem}
  .menu-item .price{grid-column:1;grid-row:auto;font-size:1.05rem;color:var(--copper);margin-top:.3rem}
  .menu-item .desc{grid-column:1}
}

/* =====================================================
   PRINT (menu page friendly)
   ===================================================== */
@media print{
  .nav, .drawer, .fab, .mobile-bar, .cat-nav, .menu-hero-actions, .menu-foot .btn, .menu-foot small{display:none !important}
  body{background:#fff;color:#000;font-size:11pt}
  .menu-body, .menu-wrap{margin:0;padding:0;background:#fff}
  .menu-hero{padding:1rem 0 1.5rem;border-color:#000}
  .menu-hero h1{font-size:2rem;color:#000}
  .menu-hero h1 em{color:#000;font-style:italic}
  .menu-hero p{color:#444;font-size:10pt}
  .menu-wrap{gap:1.6rem;margin:1rem auto !important;width:100%;max-width:680px}
  .menu-section{break-inside:avoid;page-break-inside:avoid}
  .menu-section-head{margin-bottom:.8rem;padding-bottom:.5rem;border-color:#000}
  .menu-section-head h2{color:#000;font-size:1.3rem}
  .menu-section-head .eyebrow{color:#666}
  .menu-item{padding:.5rem 0;border-color:#ccc;break-inside:avoid}
  .menu-item h4{color:#000;font-size:1rem}
  .menu-item h4 em{color:#666}
  .menu-item .price{color:#000;font-size:1rem}
  .menu-item .desc{color:#555;font-size:9pt}
  .menu-foot{border-color:#000;padding:1rem 0}
  .menu-foot h3{color:#000}
}

/* =====================================================
   SCROLL PROGRESS BAR
   ===================================================== */
#scroll-progress{
  position:fixed;top:0;left:0;
  height:3px;width:0%;
  background:var(--copper);
  z-index:2000;
  border-radius:0 2px 2px 0;
  pointer-events:none;
  transition:width .08s linear;
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */
#back-top{
  position:fixed;bottom:2rem;right:2rem;
  width:3rem;height:3rem;border-radius:50%;
  background:var(--ink);color:var(--bone);
  display:flex;align-items:center;justify-content:center;
  z-index:900;
  opacity:0;pointer-events:none;
  transform:translateY(10px);
  transition:opacity .3s var(--ease), transform .3s var(--ease), background .2s;
  box-shadow:0 4px 20px rgba(22,20,15,.22);
}
#back-top.visible{opacity:1;pointer-events:auto;transform:translateY(0)}
#back-top:hover{background:var(--copper)}
#back-top svg{width:1.1rem;height:1.1rem}
/* back-top override handled in app-nav block above */

/* =====================================================
   HERO PAGINATION DOTS
   ===================================================== */
.hero-dots{
  position:absolute;bottom:2.2rem;left:50%;transform:translateX(-50%);
  display:flex;gap:.6rem;z-index:10;
}
.hero-dot{
  width:.5rem;height:.5rem;border-radius:50%;
  background:rgba(255,255,255,.4);
  border:none;padding:0;cursor:pointer;
  transition:background .35s, transform .35s, opacity .35s;
  flex-shrink:0;
}
.hero-dot.active{background:#fff;transform:scale(1.35)}
.hero-dot:not(.active):hover{background:rgba(255,255,255,.7)}

/* =====================================================
   DARK MODE — variables
   ===================================================== */
[data-theme="dark"]{
  --bone:#1a1510;
  --bone-2:#221d16;
  --bone-3:#2b241b;
  --ink:#efe6d4;
  --ink-2:#c4b49a;
  --muted:#8a7c6e;
  --line:rgba(240,230,210,.11);
  --line-strong:rgba(240,230,210,.2);
  --copper:#c87554;
  --copper-2:#d98a68;
}

/* Elements with hardcoded colours need explicit override */
[data-theme="dark"] .nav,
[data-theme="dark"] .nav.scrolled{
  background:rgba(26,21,16,.94) !important;
  backdrop-filter:saturate(180%) blur(18px);
  -webkit-backdrop-filter:saturate(180%) blur(18px);
  border-bottom-color:var(--line) !important;
  color:var(--ink);
}
[data-theme="dark"] .menu-body .nav,
[data-theme="dark"] .order-body .nav{
  background:rgba(26,21,16,.96) !important;
}
[data-theme="dark"] .drawer{
  background:var(--bone);
  border-top-color:var(--line);
}
[data-theme="dark"] .cat-nav{
  background:rgba(26,21,16,.94);
}
[data-theme="dark"] .cat-nav-inner a.active{
  color:#fff;
  background:var(--copper);
}
[data-theme="dark"] ::selection{background:var(--copper);color:#fff}

/* Theme toggle button */
.theme-toggle{
  display:flex;align-items:center;justify-content:center;
  width:2.1rem;height:2.1rem;border-radius:50%;
  background:transparent;color:inherit;
  border:1px solid var(--line-strong);
  flex-shrink:0;
  transition:background .2s, color .2s, border-color .2s;
}
.theme-toggle:hover{background:var(--copper);color:#fff;border-color:transparent}
.theme-toggle svg{width:1rem;height:1rem;stroke:currentColor;fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.icon-moon{display:block}
.icon-sun{display:none}
[data-theme="dark"] .icon-moon{display:none}
[data-theme="dark"] .icon-sun{display:block}

/* Scrolled nav dark mode — keep the button visible */
.nav.scrolled .theme-toggle{border-color:var(--line-strong)}
