/* ============================================================
   VARAZI — Restaurant & Beer Garden, Tbilisi
   Design system based on the Varazi brand book
   ============================================================ */

/* ---------- Fonts ---------- */
/* Noto Sans Georgian — Georgian text */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@300;400;500;600;700&display=swap');

/* ---- Brand fonts (self-hosted) ---- */
/* Gilroy — primary sans (English / Latin), per brand book */
@font-face{font-family:'Gilroy';src:url('../fonts/Gilroy-Light.woff') format('woff');font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:'Gilroy';src:url('../fonts/Gilroy-Regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Gilroy';src:url('../fonts/Gilroy-Medium.woff') format('woff');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Gilroy';src:url('../fonts/Gilroy-SemiBold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Gilroy';src:url('../fonts/Gilroy-Bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Gilroy';src:url('../fonts/Gilroy-ExtraBold.woff') format('woff');font-weight:800;font-style:normal;font-display:swap}
/* BPG Irubaqidze — Georgian, per brand book */
@font-face{font-family:'BPG Irubaqidze';src:url('../fonts/BPG-Irubaqidze.otf') format('opentype');font-weight:400;font-style:normal;font-display:swap}
/* Gilroy GEO — Georgian (only the Heavy weight was provided) */
@font-face{font-family:'Gilroy GEO';src:url('../fonts/GilroyGEO-Heavy.woff2') format('woff2'),url('../fonts/GilroyGEO-Heavy.woff') format('woff');font-weight:300 900;font-style:normal;font-display:swap}

/* ---------- Design tokens ---------- */
:root{
  /* Brand greens */
  --green-950:#0E1509;
  --green-900:#131D0E;
  --green-850:#162011;
  --green-800:#1A2615;
  --green-700:#22331B;
  --green-600:#2A3F23;
  --green-500:#3a5130;
  --olive:#526126;
  --sage:#98A869;

  /* Brand golds / warm */
  --gold:#D6CB9D;
  --gold-deep:#BFA047;
  --gold-bright:#D8B34A;
  --brass:#7B6823;
  --tan:#AA9C75;
  --red:#6D2324;

  /* Neutrals */
  --cream:#EFE9D7;
  --text:rgba(239,233,215,.82);
  --muted:rgba(214,203,157,.55);
  --line:rgba(214,203,157,.16);
  --line-strong:rgba(214,203,157,.30);

  /* Type */
  --serif:'Gilroy',-apple-system,Segoe UI,sans-serif;
  --geo:'Noto Serif Georgian',serif;
  --sans:'Gilroy',-apple-system,Segoe UI,Roboto,sans-serif;

  /* Layout */
  --wrap:1240px;
  --pad:clamp(20px,5vw,80px);
  --radius:14px;
  --radius-lg:22px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --fab-edge:clamp(14px,3vw,34px);   /* inset for the stacked WhatsApp / back-to-top buttons */
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--sans);
  background:var(--green-950);
  color:var(--text);
  line-height:1.65;
  font-weight:300;
  letter-spacing:.2px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul{list-style:none}
::selection{background:var(--gold);color:var(--green-900)}

/* ---------- Typography ---------- */
h1,h2,h3,h4{font-family:var(--serif);font-weight:700;color:var(--cream);line-height:1.1;letter-spacing:-.2px}
.display{font-size:clamp(2.3rem,5.4vw,4.5rem);font-weight:800;letter-spacing:-.5px}
h2.section-title{font-size:clamp(1.8rem,3.6vw,2.7rem)}
.eyebrow{
  font-family:var(--sans);font-weight:500;font-size:.74rem;
  letter-spacing:.32em;text-transform:uppercase;color:var(--gold);
  display:inline-flex;align-items:center;gap:.8em;
}
.eyebrow::before{content:"";width:34px;height:1px;background:var(--gold-deep);opacity:.8}
.eyebrow.centered{justify-content:center}
.eyebrow.centered::after{content:"";width:34px;height:1px;background:var(--gold-deep);opacity:.8}
.lead{font-size:1.05rem;color:var(--text);max-width:48ch}
.geo{font-family:var(--geo)}

/* ---------- Layout helpers ---------- */
.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:var(--pad)}
section{position:relative}
.section-pad{padding-block:clamp(48px,6.5vw,96px)}
.center{text-align:center}
.muted{color:var(--muted)}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.7em;
  font-family:var(--sans);font-weight:500;font-size:.86rem;letter-spacing:.04em;
  padding:.85em 1.5em;border-radius:999px;
  transition:all .35s var(--ease);white-space:nowrap;
}
.btn .ico{
  position:relative;
  display:grid;place-items:center;width:1.9em;height:1.9em;border-radius:50%;
  transition:transform .4s var(--ease),background .35s;
}
.btn svg{width:13px;height:13px}
.btn-primary{background:var(--gold);color:var(--green-900)}
.btn-primary .ico{background:var(--green-900);color:var(--gold)}
.btn-primary:hover{background:var(--gold-bright);transform:translateY(-2px)}
.btn-primary:hover .ico{transform:rotate(45deg)}
.btn-ghost{border:1px solid var(--line-strong);color:var(--cream)}
.btn-ghost .ico{background:rgba(214,203,157,.12);color:var(--gold)}
.btn-ghost:hover{border-color:var(--gold);background:rgba(214,203,157,.06)}
.btn-ghost:hover .ico{transform:rotate(45deg)}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:fixed;inset:0 0 auto 0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  gap:2rem;padding:1.1rem var(--pad);
  transition:background .4s var(--ease),padding .4s var(--ease),border-color .4s;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(14,21,9,.86);backdrop-filter:blur(14px);
  border-bottom-color:var(--line);padding-block:.7rem;
}
.brand{display:flex;align-items:center;gap:.6rem;z-index:2}
.brand .mark{width:26px;height:26px;color:var(--gold);flex:none}
.brand .word{
  font-family:var(--serif);font-weight:600;font-size:1.5rem;
  letter-spacing:.22em;color:var(--cream);padding-left:.1em;
}
.brand-logo{width:130px;height:auto;flex:none;display:block;transition:width .4s var(--ease)}
.nav.scrolled .brand-logo{width:110px}
.footer .brand-logo{width:160px}

/* ---------- Language switch ---------- */
.lang-switch{display:flex;align-items:center;gap:.35rem;font-size:.82rem;font-weight:500;letter-spacing:.04em}
.lang-switch button{color:var(--text);padding:.2em .2em;transition:color .3s;font-family:inherit}
.lang-switch button:hover{color:var(--cream)}
.lang-switch button.active{color:var(--gold)}
.lang-switch span{opacity:.35}
.lang-switch-mobile{font-size:1.1rem;gap:.7rem;margin-top:.5rem}

/* ---------- Georgian language overrides ---------- */
html.lang-ka{--serif:'Noto Sans Georgian','Gilroy',sans-serif;--sans:'Noto Sans Georgian','Gilroy',sans-serif}
html.lang-ka h1,html.lang-ka h2,html.lang-ka h3,html.lang-ka h4{letter-spacing:0}
html.lang-ka .eyebrow,html.lang-ka .nav-links a{letter-spacing:.12em}
html.lang-ka .brand .word{letter-spacing:.1em}
/* Georgian headings run wider — size them so two-part titles stay on 2 lines */
html.lang-ka .section-title{font-size:clamp(1.5rem,2.6vw,2.05rem)}
html.lang-ka .sec-head .titles{max-width:46ch}
/* Georgian logo is taller — narrow it so both logos share the same height */
html.lang-ka .brand-logo{width:101px}
html.lang-ka .nav.scrolled .brand-logo{width:88px}
html.lang-ka .footer .brand-logo{width:126px}
.nav-links{display:flex;gap:2.4rem;align-items:center}
.nav-links a{
  font-size:.9rem;font-weight:400;color:var(--text);position:relative;padding:.2em 0;
  transition:color .3s;
}
.nav-links a::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:1px;
  background:var(--gold);transition:width .35s var(--ease);
}
.nav-links a:hover,.nav-links a.active{color:var(--cream)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-cta{display:flex;align-items:center;gap:1rem;z-index:2}
.nav-mobile{display:none}
.nav-toggle{display:none;flex-direction:column;gap:5px;width:30px;height:24px;justify-content:center}
.nav-toggle span{height:1.5px;background:var(--cream);transition:.3s var(--ease);transform-origin:center}
.nav-toggle.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ============================================================
   HERO
   ============================================================ */
.hero{min-height:100svh;display:flex;align-items:center;position:relative;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-bg::after{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(90deg,var(--green-950) 0%,rgba(14,21,9,.78) 38%,rgba(14,21,9,.25) 70%,rgba(14,21,9,.45) 100%),
    linear-gradient(0deg,var(--green-950) 2%,transparent 30%);
}
.hero-inner{position:relative;z-index:2;width:100%;padding-block:104px 48px}
.hero-dishes{display:flex;gap:1.2rem;margin-bottom:2.2rem}
.hero-dishes img{
  width:clamp(78px,9vw,120px);height:clamp(78px,9vw,120px);border-radius:50%;
  object-fit:cover;border:1px solid var(--line-strong);
  box-shadow:0 18px 40px rgba(0,0,0,.5);
}
.hero-dishes img:nth-child(2){transform:translateY(22px)}
.hero-dishes img:nth-child(3){transform:translateY(6px)}
.hero h1{margin:.4rem 0 1.4rem;max-width:14ch}
.hero .lead{margin-bottom:2.4rem}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.scroll-hint{
  position:absolute;bottom:26px;left:50%;transform:translateX(-50%);z-index:2;
  font-size:.7rem;letter-spacing:.3em;text-transform:uppercase;color:var(--muted);
  display:flex;flex-direction:column;align-items:center;gap:.7rem;
}
.scroll-hint::after{content:"";width:1px;height:42px;background:linear-gradient(var(--gold),transparent);animation:pulse 2.2s infinite}
@keyframes pulse{0%,100%{opacity:.3}50%{opacity:1}}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.sec-head{display:flex;justify-content:space-between;align-items:flex-end;gap:2rem;flex-wrap:wrap;margin-bottom:clamp(1.8rem,3.6vw,2.8rem)}
.sec-head .titles{max-width:40ch}
.sec-head h2{margin-top:1rem}
.sec-head .note{max-width:34ch;color:var(--text);font-size:.96rem}

/* ============================================================
   MENU CATEGORIES (home)
   ============================================================ */
.menu-feature{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,5vw,5rem);align-items:center}
.menu-list .m-item{
  display:block;padding:1.6rem 0;border-top:1px solid var(--line);
  transition:padding .4s var(--ease);
}
.menu-list .m-item:last-child{border-bottom:1px solid var(--line)}
.menu-list .m-item .row{display:flex;justify-content:space-between;align-items:center;gap:1rem}
.menu-list .m-item h3{font-size:clamp(1.5rem,2.6vw,2rem);transition:color .35s}
.menu-list .m-item p{margin-top:.5rem;font-size:.92rem;max-width:46ch;color:var(--muted)}
.menu-list .m-item .arrow{
  flex:none;width:28px;height:28px;display:grid;place-items:center;color:var(--gold);
  opacity:.6;transition:transform .45s var(--ease),opacity .3s var(--ease);
}
.menu-list .m-item .arrow svg{width:17px;height:17px;stroke-width:1.4}
.menu-list .m-item:hover{padding-left:1rem}
.menu-list .m-item:hover h3{color:var(--gold)}
.menu-list .m-item:hover .arrow{opacity:1;transform:translate(5px,-5px)}
.menu-feature-img{position:relative;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/5}
.menu-feature-img img{width:100%;height:100%;object-fit:cover;transition:transform 1.2s var(--ease)}
.menu-feature-img:hover img{transform:scale(1.06)}
.menu-feature-img .tag{
  position:absolute;left:1.2rem;bottom:1.2rem;background:rgba(14,21,9,.7);
  backdrop-filter:blur(6px);border:1px solid var(--line);padding:.5rem 1rem;border-radius:999px;
  font-size:.78rem;letter-spacing:.1em;color:var(--gold)
}

/* ============================================================
   SIGNATURE DISHES (carousel)
   ============================================================ */
.sig{background:var(--green-900)}
.sig-track-wrap{overflow:hidden}
.sig-track{display:flex;gap:1.4rem;cursor:ew-resize;touch-action:pan-y;user-select:none;will-change:transform}
.sig-card img{user-select:none;-webkit-user-drag:none}
.sig-card{
  flex:0 0 clamp(240px,28vw,330px);position:relative;border-radius:var(--radius-lg);
  overflow:hidden;aspect-ratio:3/4;
}
.sig-card img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.sig-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(14,21,9,.92),transparent 55%)}
.sig-card:hover img{transform:scale(1.07)}
.sig-card .cap{position:absolute;left:1.3rem;right:1.3rem;bottom:1.3rem;z-index:2}
.sig-card .cap small{color:var(--gold);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase}
.sig-card .cap h3{font-size:1.3rem;margin-top:.35rem}
.sig-nav{display:flex;gap:.8rem;margin-top:2.2rem;justify-content:flex-end}
.sig-nav button{
  width:48px;height:48px;border-radius:50%;border:1px solid var(--line-strong);
  display:grid;place-items:center;color:var(--cream);transition:.3s
}
.sig-nav button:hover{background:var(--gold);color:var(--green-900);border-color:var(--gold)}
.sig-nav button:disabled{opacity:.3;cursor:default}
.sig-nav button:disabled:hover{background:none;color:var(--cream);border-color:var(--line-strong)}

/* ============================================================
   AMBIANCE GALLERY
   ============================================================ */
.gallery-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.gallery-row.trio{grid-template-columns:repeat(3,1fr)}   /* "Why Varazi" three-photo band */
.gallery-row figure{overflow:hidden;border-radius:var(--radius);position:relative;aspect-ratio:4/5}
.gallery-row img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.gallery-row figure:hover img{transform:scale(1.08)}

/* ============================================================
   STORY / ABOUT TEASER + STATS
   ============================================================ */
.story{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(2rem,5vw,5rem);align-items:center}
.story-img{position:relative;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/5}
.story-img img{width:100%;height:100%;object-fit:cover}
.badge{
  position:absolute;top:1.2rem;left:1.2rem;display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(14,21,9,.78);backdrop-filter:blur(6px);border:1px solid var(--line);
  padding:.5rem 1rem;border-radius:999px;font-size:.78rem;color:var(--gold)
}
.story blockquote{
  font-family:var(--serif);font-style:italic;font-size:clamp(1.2rem,2vw,1.5rem);
  color:var(--cream);border-left:2px solid var(--gold-deep);padding-left:1.4rem;margin:1.6rem 0 2rem;line-height:1.5
}
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;margin-top:clamp(2.2rem,4vw,3.4rem)}
.stat{background:var(--green-900);padding:2rem 1.6rem;transition:background .4s}
.stat:hover{background:var(--green-850)}
.stat h3{font-size:1.15rem;color:var(--gold);margin-bottom:.5rem}
.stat p{font-size:.86rem;color:var(--muted)}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi{background:var(--green-900)}
.testi-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem}
.testi-card{background:var(--green-850);border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;display:flex;flex-direction:column}
.testi-card .who{display:flex;align-items:center;gap:1rem;padding:1.6rem 1.6rem 0}
.testi-card .who img{width:54px;height:54px;border-radius:50%;object-fit:cover;border:1px solid var(--line-strong)}
.testi-card .who h4{font-size:1.05rem}
.testi-card .who span{font-size:.78rem;color:var(--muted)}
.testi-card .photo{margin:1.4rem 1.6rem;border-radius:var(--radius);overflow:hidden;aspect-ratio:16/9}
.testi-card .photo img{width:100%;height:100%;object-fit:cover}
.testi-card .body{padding:0 1.6rem 1.8rem}
.stars{color:var(--gold-bright);letter-spacing:.2em;font-size:.95rem;margin-bottom:.8rem}
.testi-card .body h3{font-size:1.3rem;margin-bottom:.7rem}
.testi-card .body p{font-size:.92rem;color:var(--text)}

/* ============================================================
   RESERVATION CTA (home)
   ============================================================ */
.reserve-cta{display:grid;grid-template-columns:1fr 1.1fr;gap:0;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line)}
.reserve-cta .info{background:var(--green-700);padding:clamp(2rem,4vw,3.4rem)}
.reserve-cta .info h2{margin:1rem 0 2rem}
.hours{display:grid;gap:1.4rem;margin-bottom:2rem}
.hours .h-row{display:flex;justify-content:space-between;border-bottom:1px dashed var(--line);padding-bottom:.9rem}
.hours .h-row .day{color:var(--gold);font-size:.9rem;letter-spacing:.05em}
.hours .h-row .time{color:var(--cream);font-family:var(--serif);font-size:1.05rem}
.addr{font-size:.9rem;color:var(--text);margin-bottom:2rem;line-height:1.8}
.addr strong{color:var(--gold);font-weight:500;display:block;letter-spacing:.1em;text-transform:uppercase;font-size:.74rem;margin-bottom:.3rem}
.reserve-cta .pic{position:relative;min-height:340px}
.reserve-cta .pic img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:var(--green-900);border-top:1px solid var(--line);padding-top:clamp(2.8rem,5vw,4.4rem)}
.footer-grid{display:grid;grid-template-columns:1.3fr 1.3fr .8fr .8fr 1.4fr;gap:2.5rem}
.footer .brand{margin-bottom:1.2rem}
.footer .about{font-size:.9rem;color:var(--muted);max-width:32ch;margin-bottom:1.6rem}
.footer .socials{display:flex;gap:.8rem}
.footer .news .socials{margin-top:1.4rem}
.footer .socials a{width:40px;height:40px;border:1px solid var(--line);border-radius:50%;display:grid;place-items:center;color:var(--gold);transition:.3s}
.footer .socials a:hover{background:var(--gold);color:var(--green-900);border-color:var(--gold)}
.footer .map-embed{position:relative;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;height:210px;background:var(--green-850)}
.footer .map-embed .map-overlay{position:absolute;inset:0;z-index:2;cursor:pointer}
.footer .map-embed iframe{display:block;width:100%;height:100%;border:0;filter:grayscale(.2) contrast(.95)}
.footer .map-link{display:inline-block;font-size:.85rem;color:var(--gold);margin-top:.9rem;transition:color .3s}
.footer .map-link:hover{color:var(--gold-bright)}
.footer h4{font-family:var(--sans);font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1.3rem;font-weight:500}
.footer .col a{display:block;font-size:.92rem;color:var(--text);padding:.42rem 0;transition:color .3s,padding-left .3s}
.footer .col a:hover{color:var(--gold);padding-left:.4rem}
.news p{font-size:.9rem;color:var(--muted);margin-bottom:1.2rem}
.news form{display:flex;gap:.6rem;background:var(--green-850);border:1px solid var(--line);border-radius:999px;padding:.35rem .35rem .35rem 1.2rem}
.news input{flex:1;background:none;border:none;color:var(--cream);font-family:var(--sans);font-size:.9rem;outline:none}
.news input::placeholder{color:var(--muted)}
.news button{width:44px;height:44px;border-radius:50%;background:var(--gold);color:var(--green-900);display:grid;place-items:center;flex:none;transition:.3s}
.news button:hover{background:var(--gold-bright)}
.footer-bottom{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;border-top:1px solid var(--line);margin-top:clamp(2.2rem,4vw,3.2rem);padding:1.5rem 0;font-size:.82rem;color:var(--muted)}

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed;right:var(--fab-edge);bottom:var(--fab-edge);z-index:90;
  width:48px;height:48px;border-radius:50%;display:grid;place-items:center;
  background:var(--gold);color:var(--green-900);
  border:none;box-shadow:0 10px 30px rgba(0,0,0,.35);cursor:pointer;
  opacity:0;transform:translateY(14px) scale(.9);pointer-events:none;
  transition:opacity .4s var(--ease),transform .4s var(--ease),background .3s
}
.back-to-top svg{width:20px;height:20px}
.back-to-top.show{opacity:1;transform:none;pointer-events:auto}
.back-to-top:hover{background:var(--gold-bright);transform:translateY(-3px)}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero{min-height:52vh;display:flex;align-items:center;justify-content:center;text-align:center;position:relative;overflow:hidden;padding-top:80px}
.page-hero .hero-bg::after{background:linear-gradient(0deg,var(--green-950),rgba(14,21,9,.55)),radial-gradient(ellipse at center,transparent,rgba(14,21,9,.5))}
.page-hero .inner{position:relative;z-index:2;max-width:760px;padding-inline:var(--pad)}
.page-hero h1{margin:1.2rem 0;font-size:clamp(2.1rem,4.6vw,3.6rem)}
.page-hero .deco-title{display:inline-flex;align-items:center;gap:1.2rem}
.page-hero .deco-title::before,.page-hero .deco-title::after{content:"";width:clamp(30px,8vw,80px);height:1px;background:var(--gold-deep)}

/* ============================================================
   ABOUT — TIMELINE
   ============================================================ */
.timeline{position:relative;max-width:1000px;margin-inline:auto}
.timeline::before{content:"";position:absolute;left:50%;top:0;bottom:0;width:1px;background:var(--line);transform:translateX(-50%)}
.t-item{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,6vw,5rem);align-items:center;margin-bottom:clamp(3rem,7vw,6rem);position:relative}
.t-item .t-img{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/3}
.t-item .t-img img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--ease)}
.t-item .t-img:hover img{transform:scale(1.06)}
.t-item .dot{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:14px;height:14px;border-radius:50%;background:var(--gold);border:3px solid var(--green-950);box-shadow:0 0 0 4px rgba(214,203,157,.12)}
.t-item:nth-child(even) .t-img{order:2}
.t-item .t-text .yr{font-family:var(--serif);font-size:clamp(2.4rem,5vw,3.6rem);color:var(--cream);line-height:1}
.t-item .t-text .label{color:var(--gold);font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;margin-bottom:.6rem;display:block}
.t-item .t-text p{margin-top:1rem;color:var(--text);font-size:.96rem}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.team-card{position:relative;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:3/4}
.team-card img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.team-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(14,21,9,.9),transparent 50%)}
.team-card:hover img{transform:scale(1.06)}
.team-card .info{position:absolute;left:1.4rem;bottom:1.4rem;z-index:2}
.team-card .info h3{font-size:1.35rem}
.team-card .info span{color:var(--gold);font-size:.82rem;letter-spacing:.1em}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-tabs{display:flex;gap:.7rem;flex-wrap:wrap;justify-content:center;margin-bottom:clamp(2.5rem,5vw,4rem)}
.menu-tabs button{
  padding:.6em 1.4em;border-radius:999px;border:1px solid var(--line-strong);
  font-size:.85rem;color:var(--text);letter-spacing:.04em;transition:.3s
}
.menu-tabs button:hover{border-color:var(--gold);color:var(--cream)}
.menu-tabs button.active{background:var(--gold);color:var(--green-900);border-color:var(--gold)}
.menu-cat{margin-bottom:clamp(2.6rem,5vw,4.2rem);scroll-margin-top:110px}
.menu-cat .cat-head{display:flex;align-items:center;gap:1.5rem;margin-bottom:2.6rem}
/* Category mark — line icons in place of the old photo thumbnails.
   The icon box is sized in px, not %: the portrait icons (bottle, tall glass)
   have no definite height to resolve a percentage against, so they would size
   from their own ratio and spill out of the circle. */
.menu-cat .cat-head .cicon{
  width:84px;height:84px;border-radius:50%;flex:none;
  display:grid;place-items:center;
  border:1px solid var(--line-strong);background:var(--green-900);
}
.menu-cat .cat-head .cicon img{width:46px;height:46px;object-fit:contain;display:block}
/* Categories still waiting on artwork show the brand mark instead */
.menu-cat .cat-head .cicon.is-placeholder{opacity:.5}
.menu-cat .cat-head .cicon.is-placeholder img{width:30px;height:30px}
.menu-cat .cat-head h2{font-size:clamp(1.8rem,3.5vw,2.6rem)}
.menu-cat .cat-head p{font-size:.9rem;color:var(--muted);margin-top:.3rem}
.dish-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem 3.5rem}
.dish{display:flex;gap:1.2rem;align-items:flex-start;padding-bottom:1.5rem;border-bottom:1px solid var(--line)}
.dish .dimg{width:74px;height:74px;border-radius:12px;object-fit:cover;flex:none}
.dish .d-main{flex:1}
.dish .d-top{display:flex;justify-content:space-between;align-items:baseline;gap:.6rem}
.dish .d-top h3{font-size:1.12rem;font-family:var(--serif);color:var(--cream)}
.dish .dots{flex:1;border-bottom:1px dotted var(--line-strong);margin:0 .4rem;transform:translateY(-4px)}
.dish .price{font-family:var(--serif);color:var(--gold);font-size:1.1rem;white-space:nowrap}
.dish p{font-size:.84rem;color:var(--muted);margin-top:.35rem}
.dish .tag-v{display:inline-block;margin-top:.5rem;font-size:.66rem;letter-spacing:.12em;text-transform:uppercase;color:var(--sage);border:1px solid var(--line-strong);padding:.1em .6em;border-radius:999px}

/* ============================================================
   RESERVATION PAGE — FORM
   ============================================================ */
.reserve-wrap{display:grid;grid-template-columns:1.05fr .95fr;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden}
.reserve-form{background:var(--green-850);padding:clamp(2rem,4vw,3.6rem)}
.reserve-form h2{font-size:1.8rem;margin-bottom:.4rem}
.reserve-form .sub{color:var(--muted);font-size:.9rem;margin-bottom:2.2rem}
.field{margin-bottom:1.4rem}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.field label{display:block;font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:.6rem}
.field input,.field select{
  width:100%;background:var(--green-950);border:1px solid var(--line);border-radius:10px;
  padding:.95em 1.1em;color:var(--cream);font-family:var(--sans);font-size:.95rem;outline:none;transition:.3s
}
.field input::placeholder{color:rgba(214,203,157,.35)}
.field input:focus,.field select:focus{border-color:var(--gold);background:var(--green-900)}
.field input[type=date],.field input[type=time]{color-scheme:dark}
.reserve-form .btn-primary{width:100%;justify-content:center;margin-top:.6rem}
.reserve-pic{position:relative;min-height:400px}
.reserve-pic img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.form-note{margin-top:1.2rem;font-size:.82rem;color:var(--sage);text-align:center;display:none}
.form-note.show{display:block}
.contact-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;margin-top:clamp(3rem,5vw,4.5rem)}
.contact-card{border:1px solid var(--line);border-radius:var(--radius);padding:1.8rem;text-align:center;transition:.4s}
.contact-card:hover{background:var(--green-900)}
.contact-card .ci{width:48px;height:48px;border-radius:50%;border:1px solid var(--line-strong);display:grid;place-items:center;color:var(--gold);margin:0 auto 1rem}
.contact-card h4{font-family:var(--serif);font-size:1.1rem;margin-bottom:.4rem}
.contact-card p{font-size:.88rem;color:var(--muted)}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.post{border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;background:var(--green-900);transition:.4s var(--ease)}
.post:hover{transform:translateY(-6px);border-color:var(--line-strong)}
.post .pimg{aspect-ratio:16/10;overflow:hidden}
.post .pimg img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.post:hover .pimg img{transform:scale(1.06)}
.post .pbody{padding:1.6rem}
.post .meta{font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem}
.post h3{font-size:1.3rem;margin-bottom:.7rem;line-height:1.25}
.post p{font-size:.9rem;color:var(--muted)}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-tabs{display:flex;gap:.6rem;justify-content:center;margin-bottom:clamp(1.4rem,2.6vw,2.1rem)}
.gallery-tabs button{padding:.62em 1.8em;border-radius:999px;border:1px solid var(--line-strong);font-size:.9rem;color:var(--text);letter-spacing:.06em;transition:.3s}
.gallery-tabs button:hover{border-color:var(--gold);color:var(--cream)}
.gallery-tabs button.active{background:var(--gold);color:var(--green-900);border-color:var(--gold)}
.gal-panel{display:none}
.gal-panel.active{display:block}
.gal-filters{display:flex;gap:.5rem;flex-wrap:wrap;justify-content:center;margin-bottom:clamp(1.4rem,2.6vw,2.1rem)}
.gal-filters button{padding:.45em 1.15em;border-radius:999px;border:1px solid var(--line);font-size:.8rem;color:var(--muted);transition:.3s}
.gal-filters button:hover{border-color:var(--gold);color:var(--cream)}
.gal-filters button.active{border-color:var(--gold);color:var(--gold);background:rgba(214,203,157,.08)}
.gal-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.gal-item{position:relative;display:block;overflow:hidden;border-radius:var(--radius);aspect-ratio:4/5;background:var(--green-900)}
.gal-item img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.gal-item:hover img{transform:scale(1.07)}
.gal-item[hidden]{display:none}
/* Food tiles are links through to the matching menu category */
.gal-tag{
  position:absolute;left:0;right:0;bottom:0;z-index:2;padding:1.6rem .9rem .9rem;
  background:linear-gradient(0deg,rgba(14,21,9,.92),transparent);
  font-size:.82rem;color:var(--cream);display:flex;flex-direction:column;gap:.15rem;
  opacity:0;transform:translateY(6px);transition:opacity .35s var(--ease),transform .35s var(--ease)
}
.gal-item:hover .gal-tag,.gal-item:focus-visible .gal-tag{opacity:1;transform:none}
.gal-tag em{font-style:normal;font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold)}
.gal-empty{display:none;text-align:center;color:var(--muted);padding:3rem 0}
.gal-note{text-align:center;color:var(--muted);font-size:.92rem;margin-bottom:clamp(1.4rem,2.5vw,2rem)}
.gal-item{cursor:zoom-in}

/* ---------- Lightbox (click a gallery photo to enlarge) ---------- */
.lightbox{
  position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:clamp(12px,3vw,32px);
  background:rgba(10,15,7,.94);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
  opacity:0;pointer-events:none;transition:opacity .3s var(--ease)
}
.lightbox.open{opacity:1;pointer-events:auto}
.lb-stage{display:flex;flex-direction:column;align-items:center;gap:1rem;max-width:100%}
.lb-frame{display:grid;place-items:center;max-width:100%}
.lb-img{
  display:block;max-width:min(1100px,88vw);max-height:74vh;width:auto;height:auto;
  border-radius:var(--radius);box-shadow:0 30px 80px rgba(0,0,0,.6);
  opacity:0;transform:scale(.985);transition:opacity .35s var(--ease),transform .35s var(--ease)
}
.lb-img.ready{opacity:1;transform:none}
.lb-cap{display:flex;flex-direction:column;align-items:center;gap:.5rem;text-align:center}
.lb-title{color:var(--cream);font-size:.98rem}
.lb-count{color:var(--muted);font-size:.76rem;letter-spacing:.16em}
.lb-menu{
  display:inline-block;margin-top:.2rem;font-size:.76rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);border-bottom:1px solid var(--line-strong);padding-bottom:.15em;transition:.3s
}
.lb-menu:hover{color:var(--gold-bright);border-color:var(--gold-bright)}
.lb-menu[hidden]{display:none}
.lb-btn{
  position:absolute;z-index:2;width:48px;height:48px;border-radius:50%;display:grid;place-items:center;
  background:var(--gold);color:var(--green-900);border:none;cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.45);transition:transform .3s var(--ease),background .3s
}
.lb-btn:hover{background:var(--gold-bright);transform:scale(1.06)}
.lb-btn[hidden]{display:none}
.lb-btn svg{width:22px;height:22px}
.lb-prev{left:clamp(10px,2.4vw,28px);top:50%;margin-top:-24px}
.lb-next{right:clamp(10px,2.4vw,28px);top:50%;margin-top:-24px}
.lb-close{top:clamp(10px,2.4vw,28px);right:clamp(10px,2.4vw,28px);width:44px;height:44px}
.lb-close svg{width:17px;height:17px}

/* ---------- Gallery: video ---------- */
.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
/* Gallery video tab: one landscape feature, then the vertical reels — same cards as the home page */
.video-feature{max-width:840px;margin:0 auto clamp(1.2rem,2.5vw,2rem)}
.reel-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem}
.video-card{position:relative;display:block;border-radius:var(--radius);overflow:hidden;aspect-ratio:16/9;background:var(--green-900);border:1px solid var(--line)}
.video-card img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.video-card:hover img{transform:scale(1.06)}
.video-card iframe{width:100%;height:100%;border:0;display:block}
/* Only the poster/facade cards get the scrim — a real <div class="video-card"><iframe> stays clickable */
a.video-card::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(0deg,rgba(14,21,9,.85),transparent 60%)}
.video-play{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2;
  width:54px;height:54px;border-radius:50%;display:grid;place-items:center;
  background:rgba(239,233,215,.92);color:var(--green-900);
  transition:transform .35s var(--ease),background .3s
}
.video-play svg{width:22px;height:22px;margin-left:2px}
.video-card:hover .video-play{transform:translate(-50%,-50%) scale(1.1);background:var(--gold)}
.video-cap{position:absolute;left:1.1rem;right:1.1rem;bottom:.9rem;z-index:2;font-size:.9rem;color:var(--cream);font-family:var(--serif)}
/* Clips play here on the site instead of opening Instagram.
   Reels are vertical, so the frame defaults to 9:16 and widens for landscape clips. */
.vbox-frame{
  width:min(420px,92vw);aspect-ratio:9/16;max-height:84vh;
  border-radius:var(--radius);overflow:hidden;background:#000;box-shadow:0 30px 80px rgba(0,0,0,.6)
}
.vbox-frame.wide{width:min(980px,92vw);aspect-ratio:16/9}
/* Instagram supplies its own chrome and white background — give it room instead of a fixed ratio */
.vbox-frame.ig{width:min(400px,92vw);aspect-ratio:auto;height:min(84vh,720px);background:#fff}
.vbox-frame iframe,.vbox-frame video{width:100%;height:100%;border:0;display:block}

/* ============================================================
   INSTAGRAM REELS
   ============================================================ */
.reels{background:var(--green-900)}
.reels .ig-handle{color:var(--gold);border-bottom:1px solid transparent;transition:border-color .3s}
.reels .ig-handle:hover{border-bottom-color:var(--gold)}
/* The strip scrolls natively (swipe / trackpad / arrows) but the browser
   scrollbar is hidden — edge fades and hover arrows carry the affordance. */
.reels-viewport{position:relative}
.reels-track{
  display:grid;grid-auto-flow:column;grid-auto-columns:clamp(150px,17vw,200px);gap:1rem;
  overflow-x:auto;scroll-snap-type:x proximity;scroll-behavior:smooth;
  scrollbar-width:none;-ms-overflow-style:none;
}
.reels-track::-webkit-scrollbar{display:none}

/* Fades tell you the strip continues; they only show on the side you can travel */
.reels-viewport::before,.reels-viewport::after{
  content:"";position:absolute;top:0;bottom:0;width:clamp(40px,7vw,80px);z-index:2;
  pointer-events:none;opacity:0;transition:opacity .35s var(--ease)
}
.reels-viewport::before{left:0;background:linear-gradient(90deg,var(--green-900),transparent)}
.reels-viewport::after{right:0;background:linear-gradient(270deg,var(--green-900),transparent)}
.reels-viewport.can-prev::before,.reels-viewport.can-next::after{opacity:1}

.reels-nav{
  position:absolute;top:50%;transform:translateY(-50%);z-index:3;
  width:46px;height:46px;border-radius:50%;display:grid;place-items:center;
  background:rgba(14,21,9,.72);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  border:1px solid var(--line-strong);color:var(--cream);
  opacity:0;pointer-events:none;
  transition:opacity .3s var(--ease),background .3s,color .3s,border-color .3s
}
.reels-nav svg{width:18px;height:18px}
.reels-nav.prev{left:10px}
.reels-nav.next{right:10px}
.reels-nav:hover{background:var(--gold);color:var(--green-900);border-color:var(--gold)}
/* Reveal on hover, or whenever a keyboard lands on them */
.reels-viewport:hover .reels-nav:not([disabled]),
.reels-nav:focus-visible{opacity:1;pointer-events:auto}
.reels-nav[disabled]{opacity:0;pointer-events:none}

/* Touch has swiping, so the arrows would only be in the way */
@media(hover:none){.reels-nav{display:none}}
.reel-card{position:relative;display:block;border-radius:var(--radius);overflow:hidden;aspect-ratio:9/16;scroll-snap-align:start;background:var(--green-850)}
.reel-card img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.reel-card:hover img{transform:scale(1.07)}
.reel-card::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(0deg,rgba(14,21,9,.6),transparent 55%)}
.reel-play{
  position:absolute;right:.7rem;bottom:.7rem;z-index:2;width:34px;height:34px;border-radius:50%;
  display:grid;place-items:center;background:rgba(14,21,9,.6);backdrop-filter:blur(6px);
  border:1px solid var(--line);color:var(--cream);transition:.3s
}
.reel-play svg{width:15px;height:15px;margin-left:1px}
.reel-card:hover .reel-play{background:var(--gold);color:var(--green-900);border-color:var(--gold)}

/* ============================================================
   INTRO
   The mark turns on the deep green, then the whole sheet fades to
   reveal the page. It is only ever displayed when JS is running and
   has a CSS failsafe, so a broken script can never hold the site shut.
   ============================================================ */
.intro{display:none}
html.js.intro-on .intro{
  display:grid;place-items:center;overflow:hidden;   /* clips the mark as it grows past the edges */
  position:fixed;inset:0;z-index:200;background:var(--green-950);
  animation:intro-failsafe .6s var(--ease) 5.5s forwards;   /* only if the script never runs */
}
/* The symbol fills the viewport and makes one slow half-turn, like a lock
   being turned open — then the sheet lifts off it. The SVG carries its own
   faded gradients, so it is painted as an image rather than a flat mask.

   Rotation uses the individual `rotate` property and the exit uses `scale`,
   deliberately kept apart: if both rode on `transform`, cancelling the
   animation at exit would reset the turn to 0deg and the mark would visibly
   jump backwards. Kept separate, the turn simply carries on through the fade. */
/* Sized against BOTH axes (not vmax) so the whole mark stays on screen —
   on a tall phone vmax follows the height and the arms get cropped. */
.intro-mark{
  width:min(92vw,74vh);height:min(92vw,74vh);
  background:url('../img/intro-symbol.svg') center/contain no-repeat;
  rotate:0deg;
  animation:intro-turn 3.1s cubic-bezier(.4,0,.25,1) forwards;
  /* Opacity runs longer than the scale and on a near-symmetric curve, so the
     mark holds its presence a moment before thinning out across a long tail
     rather than dropping away the instant the exit begins. */
  transition:scale 1.15s var(--ease),opacity 1.35s cubic-bezier(.45,0,.55,1);
}
@keyframes intro-turn{from{rotate:0deg}to{rotate:180deg}}

/* Hold the page still behind the sheet */
html.js.intro-on:not(.intro-done) body{overflow:hidden}

/* The exit: the turn keeps easing to its stop while the mark opens out and fades,
   then the sheet follows it off a beat later so the two fades overlap. */
html.js.intro-on.intro-done .intro-mark{scale:1.12;opacity:0}
html.js.intro-on.intro-done .intro{
  animation:none;opacity:0;visibility:hidden;
  transition:opacity .95s var(--ease) .4s,visibility 0s linear 1.35s;
}
@keyframes intro-failsafe{to{opacity:0;visibility:hidden}}
@media(prefers-reduced-motion:reduce){
  .intro-mark{animation:none;rotate:none;transition-duration:.3s}
}

/* ============================================================
   BRAND MARK
   The logo sparkle (assets/icons/varazi-mark.svg), used three ways:
   a slow-turning accent, a loading spinner, and a bullet / pin.
   Inline <svg> inherits currentColor; the mask version is for
   pseudo-elements where there is no element to inline into.
   ============================================================ */
@keyframes mark-spin{to{transform:rotate(360deg)}}
.mark{
  display:inline-block;flex:none;width:1em;height:1em;background:currentColor;
  -webkit-mask:url('../icons/varazi-mark.svg') center/contain no-repeat;
  mask:url('../icons/varazi-mark.svg') center/contain no-repeat;
}

/* Accent — the slow turn on the story badge */
.spin-star{animation:spin-star 9s linear infinite}
@keyframes spin-star{to{transform:rotate(360deg)}}

/* Bullet / pin */
.mark-bullet{color:var(--gold);width:.6em;height:.6em}
.mark-pin{color:var(--gold);width:.95em;height:.95em;position:relative;top:.14em}

/* Spinner — for anything actually loading */
.spinner{width:2rem;height:2rem;color:var(--gold);animation:mark-spin 1.1s linear infinite}

/* Gallery tiles: the mark turns behind an image until it arrives.
   Only runs while .is-loading is set, so idle tiles cost nothing. */
.gal-item img{position:relative;z-index:1}
.gal-item.is-loading::before{
  content:"";position:absolute;top:50%;left:50%;width:26px;height:26px;margin:-13px 0 0 -13px;z-index:0;
  background:var(--gold);opacity:.45;
  -webkit-mask:url('../icons/varazi-mark.svg') center/contain no-repeat;
  mask:url('../icons/varazi-mark.svg') center/contain no-repeat;
  animation:mark-spin 1.1s linear infinite;
}

/* Submit buttons: the arrow becomes the turning mark while sending */
.btn.is-sending{pointer-events:none}
.btn.is-sending:hover{transform:none}
.btn.is-sending .ico svg{opacity:0}
.btn.is-sending .ico::after{
  content:"";position:absolute;inset:20%;background:currentColor;
  -webkit-mask:url('../icons/varazi-mark.svg') center/contain no-repeat;
  mask:url('../icons/varazi-mark.svg') center/contain no-repeat;
  animation:mark-spin 1.1s linear infinite;
}

/* A spinner should still read as "working", so slow it rather than stop it */
@media(prefers-reduced-motion:reduce){
  .spinner,.gal-item.is-loading::before,.btn.is-sending .ico::after{animation-duration:3s}
}

/* ============================================================
   VACANCIES
   ============================================================ */
.vacancy-list{border-top:1px solid var(--line)}
.vacancy{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding:1.4rem 0;border-bottom:1px solid var(--line);transition:padding .35s var(--ease)}
.vacancy:hover{padding-left:.8rem}
.vacancy .v-main h3{font-size:1.15rem;margin-bottom:.25rem;display:flex;align-items:center;gap:.55rem}
.vacancy .v-main p{font-size:.86rem;color:var(--muted);max-width:60ch}
.vacancy .v-type{flex:none;font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);border:1px solid var(--line-strong);padding:.35em .9em;border-radius:999px;white-space:nowrap}
/* A listing that has its own detail page becomes a link and shows an arrow */
a.vacancy{text-decoration:none;color:inherit}
a.vacancy .v-side{display:flex;align-items:center;gap:1rem;flex:none}
a.vacancy .v-go{
  width:34px;height:34px;border-radius:50%;display:grid;place-items:center;flex:none;
  border:1px solid var(--line-strong);color:var(--gold);transition:.35s var(--ease)
}
a.vacancy .v-go svg{width:14px;height:14px}
a.vacancy:hover .v-go{background:var(--gold);color:var(--green-900);border-color:var(--gold)}
a.vacancy:hover h3{color:var(--gold)}

/* ---------- Single vacancy page ---------- */
.v-meta{display:flex;flex-wrap:wrap;gap:1px;background:var(--line);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;margin-bottom:clamp(2rem,4vw,3rem)}
.v-meta div{flex:1 1 180px;background:var(--green-900);padding:1.3rem 1.5rem}
.v-meta dt{font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);margin-bottom:.4rem}
.v-meta dd{font-size:1rem;color:var(--cream);font-family:var(--serif)}
.v-body{max-width:70ch}
.v-body h2{font-size:1.35rem;color:var(--cream);margin:clamp(2rem,3.5vw,2.8rem) 0 .9rem}
.v-body h2:first-child{margin-top:0}
.v-body p{color:var(--text);font-size:.98rem;margin-bottom:1rem;line-height:1.75}
.v-body ul{list-style:none;margin-bottom:1rem}
.v-body li{position:relative;padding-left:1.6rem;margin-bottom:.7rem;color:var(--text);font-size:.98rem;line-height:1.7}
.v-body li::before{content:"";position:absolute;left:.15rem;top:.62em;width:6px;height:6px;border-radius:50%;background:var(--gold)}
.v-apply{
  margin-top:clamp(2.4rem,4vw,3.4rem);padding:clamp(1.6rem,3vw,2.4rem);
  border:1px solid var(--line);border-radius:var(--radius-lg);background:var(--green-900)
}
.v-apply h3{font-size:1.2rem;margin-bottom:.6rem}
.v-apply p{color:var(--muted);font-size:.9rem;margin-bottom:1.4rem;max-width:52ch}
.v-back{display:inline-flex;align-items:center;gap:.5rem;color:var(--muted);font-size:.88rem;margin-bottom:1.6rem;transition:color .3s}
.v-back:hover{color:var(--gold)}
.v-back svg{width:15px;height:15px}

/* ============================================================
   WHATSAPP FLOATING CONTACT
   ============================================================ */
/* WhatsApp + call buttons float in the middle of the RIGHT edge;
   back-to-top keeps the bottom-right corner to itself. */
.wa-fab{
  position:fixed;right:var(--fab-edge);top:calc(50% - 58px);z-index:95;
  width:52px;height:52px;border-radius:50%;display:grid;place-items:center;
  background:#25D366;color:#fff;box-shadow:0 10px 30px rgba(0,0,0,.4);
  transition:transform .35s var(--ease),box-shadow .3s
}
.wa-fab svg{width:27px;height:27px}
.wa-fab:hover{transform:translateY(-3px) scale(1.05)}
.call-fab{
  position:fixed;right:var(--fab-edge);top:calc(50% + 6px);z-index:95;
  width:52px;height:52px;border-radius:50%;display:grid;place-items:center;
  background:var(--gold);color:var(--green-900);box-shadow:0 10px 30px rgba(0,0,0,.4);
  transition:transform .35s var(--ease),box-shadow .3s,background .3s
}
.call-fab svg{width:24px;height:24px}
.call-fab:hover{transform:translateY(-3px) scale(1.05);background:var(--gold-bright)}
.wa-pop{
  position:fixed;right:calc(var(--fab-edge) + 64px);top:calc(50% - 120px);z-index:96;
  width:min(300px,calc(100vw - 2 * var(--fab-edge) - 64px));background:var(--green-850);border:1px solid var(--line);
  border-radius:var(--radius);padding:1.2rem;box-shadow:0 24px 60px rgba(0,0,0,.5);
  opacity:0;transform:translateX(10px) scale(.97);pointer-events:none;transform-origin:100% 50%;
  transition:opacity .3s var(--ease),transform .3s var(--ease)
}
.wa-pop.open{opacity:1;transform:none;pointer-events:auto}
.wa-pop .wa-head{display:flex;align-items:center;gap:.7rem;margin-bottom:.7rem}
.wa-pop .wa-avatar{width:38px;height:38px;border-radius:50%;background:#25D366;display:grid;place-items:center;color:#fff;flex:none}
.wa-pop .wa-avatar svg{width:21px;height:21px}
.wa-pop h4{font-size:.98rem}
.wa-pop .wa-status{font-size:.72rem;color:var(--sage)}
.wa-pop p{font-size:.86rem;color:var(--muted);margin-bottom:1rem}
.wa-pop .wa-cta{display:flex;align-items:center;justify-content:center;gap:.5rem;min-height:44px;background:#25D366;color:#fff;font-size:.85rem;font-weight:500;padding:.7em 1em;border-radius:999px;transition:.3s}
.wa-pop .wa-cta:hover{background:#1fb855}
.wa-close{position:absolute;top:.6rem;right:.7rem;width:24px;height:24px;display:grid;place-items:center;color:var(--muted);border-radius:50%;transition:.3s}
/* Small X, thumb-sized hit area */
.wa-close::after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:44px;height:44px}
.wa-close svg{width:13px;height:13px}
.wa-close:hover{color:var(--cream);background:rgba(214,203,157,.1)}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Content is visible by default; only hidden (for animation) when JS is active.
   NOTE: the .in rule must be at least as specific as the hiding rule below,
   or opacity:0 wins and content never appears. */
html.js .reveal{opacity:0;transform:translateY(34px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
html.js .reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.1s}.reveal.d2{transition-delay:.2s}.reveal.d3{transition-delay:.3s}.reveal.d4{transition-delay:.4s}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:980px){
  .nav-links,.nav-cta .btn,.nav-cta .lang-switch{display:none}
  .nav-toggle{display:flex}
  .nav-mobile{
    position:fixed;inset:0;z-index:99;background:rgba(14,21,9,.97);backdrop-filter:blur(10px);
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.3rem;
    opacity:0;pointer-events:none;transition:opacity .4s
  }
  .nav-mobile.open{opacity:1;pointer-events:auto}
  /* :not(.btn) matters — .btn pads in em, so inheriting this size balloons it */
  .nav-mobile a:not(.btn){
    font-family:var(--serif);font-size:1.35rem;color:var(--cream);
    min-height:44px;display:flex;align-items:center
  }
  .nav-mobile .btn{margin-top:.6rem;font-size:.95rem}
  .menu-feature,.story,.reserve-cta,.reserve-wrap{grid-template-columns:1fr}
  .reserve-cta .pic,.reserve-pic{min-height:300px;order:-1}
  .stats{grid-template-columns:1fr 1fr}
  .gallery-row{grid-template-columns:repeat(2,1fr)}
  .testi-grid,.team-grid,.blog-grid,.dish-grid,.contact-strip,.footer-grid{grid-template-columns:1fr}
  .footer-grid{gap:2rem}
  .team-grid{grid-template-columns:1fr 1fr}
  .timeline::before{left:18px}
  .t-item{grid-template-columns:1fr;gap:1.2rem;padding-left:48px}
  .t-item:nth-child(even) .t-img{order:0}
  .t-item .dot{left:18px}
  .menu-feature-img{aspect-ratio:16/10}
  .gal-grid{grid-template-columns:repeat(3,1fr)}
  .video-grid{grid-template-columns:repeat(2,1fr)}
  .reel-grid{grid-template-columns:repeat(3,1fr)}
  .vacancy{flex-direction:column;align-items:flex-start;gap:.6rem}
}
@media(max-width:560px){
  .team-grid{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr}
  .hero-dishes img:nth-child(2),.hero-dishes img:nth-child(3){transform:none}
  .stats{grid-template-columns:1fr}
  .sec-head{flex-direction:column;align-items:flex-start}
  h2.section-title{font-size:1.6rem}
  html.lang-ka .section-title{font-size:1.4rem}
  .gal-grid{grid-template-columns:repeat(2,1fr)}
  .video-grid{grid-template-columns:1fr}
  .reel-grid{grid-template-columns:repeat(2,1fr)}
  /* three tall photos would run very long on a phone — go one-up and wide */
  .gallery-row.trio{grid-template-columns:1fr}
  .gallery-row.trio figure{aspect-ratio:16/10}
}

/* ============================================================
   PHONE-FIRST ERGONOMICS
   Touch targets are kept at 44px minimum, and any strip that would
   wrap into several rows on a phone becomes a single swipeable row.
   ============================================================ */
@media(max-width:980px){
  /* Hit areas grow; the visual size of the mark stays put */
  .nav-toggle{position:relative}
  .nav-toggle::after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:44px;height:44px}
  .lang-switch-mobile button{min-height:44px;display:inline-flex;align-items:center}
  .nav .brand{min-height:44px}  /* the logo is the Home button now */
  .footer .socials{gap:.6rem}
  .footer .socials a{width:44px;height:44px}
  .footer .col a{min-height:44px;display:flex;align-items:center}
  .map-link{min-height:44px;display:inline-flex;align-items:center}
  .menu-tabs button,.gallery-tabs button,.gal-filters button{min-height:44px}

  /* Category strips: one swipeable row, bleeding to the screen edges,
     instead of four stacked rows eating the fold */
  .menu-tabs,.gal-filters{
    flex-wrap:nowrap;justify-content:flex-start;overflow-x:auto;
    scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;scrollbar-width:none;
    margin-inline:calc(var(--pad) * -1);padding-inline:var(--pad);
  }
  .menu-tabs::-webkit-scrollbar,.gal-filters::-webkit-scrollbar{display:none}
  .menu-tabs button,.gal-filters button{flex:none;scroll-snap-align:start}
}

/* Touch devices have no cursor to steer the signature marquee with,
   so it becomes a normal swipe strip (the JS marquee bows out to match). */
@media(hover:none){
  .sig-track-wrap{overflow-x:auto;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  .sig-track-wrap::-webkit-scrollbar{display:none}
  .sig-track{touch-action:auto;cursor:default;padding-inline:var(--pad)}
  .sig-card{scroll-snap-align:center}
}

@media(prefers-reduced-motion:reduce){
  .spin-star{animation:none}
}
