/* ============================================================
   Bistro Fabrka — Styles
   Modern & juicy · bright red · big imagery · glassmorphism
   ============================================================ */

:root {
  /* Brand */
  --red: #D92B2B;
  --red-deep: #b41f1f;
  --red-soft: #fbe9e7;
  --red-glow: rgba(217, 43, 43, 0.28);

  /* Ink & surfaces (warm) */
  --ink: #211c1b;
  --ink-2: #4f4744;
  --ink-3: #8a807b;
  --cream: #faf6f1;
  --cream-2: #f3ece4;
  --white: #ffffff;
  --line: #ece4db;

  /* Type */
  --display: "Poppins", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;

  /* Shape */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Shadow */
  --sh-sm: 0 2px 10px rgba(33, 28, 27, 0.06);
  --sh-md: 0 18px 40px -20px rgba(33, 28, 27, 0.30);
  --sh-lg: 0 40px 80px -30px rgba(33, 28, 27, 0.40);
  --sh-red: 0 16px 34px -14px var(--red-glow);

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-weight: 600; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(34px, 5.2vw, 60px); }
.section-head p { color: var(--ink-2); font-size: clamp(17px, 1.6vw, 20px); margin: 18px 0 0; }
section { padding-block: clamp(72px, 10vw, 132px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--sh-red); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 22px 40px -14px var(--red-glow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(33,28,27,.18); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.16); color:#fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative; overflow: hidden;
  background-color: var(--cream-2);
  background-image: repeating-linear-gradient(135deg,
      rgba(217,43,43,.07) 0 14px, rgba(217,43,43,0) 14px 28px);
  display: grid; place-items: center;
  color: var(--ink-3);
}
.ph::after {
  content: attr(data-label);
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  text-align: center; padding: 10px 16px; max-width: 80%;
  border: 1px dashed rgba(138,128,123,.55); border-radius: 8px;
  background: rgba(255,255,255,.55); backdrop-filter: blur(2px);
}
.ph.dark { background-color: #2a2220; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, rgba(255,255,255,0) 14px 28px); color: rgba(255,255,255,.6); }
.ph.dark::after { border-color: rgba(255,255,255,.3); background: rgba(0,0,0,.25); color: rgba(255,255,255,.8); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background .35s, box-shadow .35s, border-color .35s, padding .35s;
  padding-block: 20px; border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  padding-block: 12px;
}
.nav .wrap { display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -.02em; color: #fff; transition: color .35s; white-space: nowrap; }
.brand > span { line-height: 1.05; }
.nav.scrolled .brand { color: var(--ink); }
.brand .mark {
  width: 66px; height: 66px; border-radius: 50%; flex: none;
  object-fit: cover; background: #1a1614;
  box-shadow: 0 5px 16px rgba(33,28,27,.30);
}
.brand small { display:block; font-family: var(--body); font-weight: 500; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; opacity: .7; margin-top: 1px; }
.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a {
  font-family: var(--display); font-weight: 500; font-size: 15px; color: rgba(255,255,255,.92);
  padding: 9px 14px; border-radius: 999px; transition: background .2s, color .35s;
}
.nav.scrolled .nav-links a { color: var(--ink-2); }
.nav-links a:hover { background: rgba(255,255,255,.16); color:#fff; }
.nav.scrolled .nav-links a:hover { background: var(--cream-2); color: var(--ink); }

.lang { display: flex; gap: 2px; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.28); }
.nav.scrolled .lang { background: var(--cream-2); border-color: var(--line); }
.lang button {
  border: 0; background: transparent; color: rgba(255,255,255,.85);
  font-family: var(--display); font-weight: 600; font-size: 12.5px; letter-spacing: .04em;
  padding: 6px 11px; border-radius: 999px; transition: background .2s, color .2s;
}
.nav.scrolled .lang button { color: var(--ink-3); }
.lang button.active { background: var(--red); color: #fff; box-shadow: var(--sh-red); }
.nav-cta { display: inline-flex; }
.nav-cta.btn { padding: 11px 20px; font-size: 15px; }
.nav-burger { display:none; margin-left:auto; width:44px; height:44px; border:0; background:transparent; border-radius:12px; }
.nav-burger span { display:block; width:22px; height:2px; background:#fff; margin:5px auto; border-radius:2px; transition: background .35s; }
.nav.scrolled .nav-burger span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color:#fff; }
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-bg .ph { width:100%; height:100%; }
.hero-photo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position: 50% 60%; z-index:0; }
.hero-bg::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(20,14,13,.78) 0%, rgba(20,14,13,.32) 42%, rgba(20,14,13,.12) 70%, transparent 100%),
    linear-gradient(180deg, rgba(20,14,13,.5) 0%, rgba(20,14,13,.12) 32%, rgba(20,14,13,.6) 78%, rgba(20,14,13,.86) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(217,43,43,.30), transparent 55%);
}
.hero .wrap { position: relative; z-index: 2; padding-bottom: clamp(56px, 9vw, 110px); padding-top: 140px; width:100%; }

/* ---- rising steam ---- */
.steam { position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden; }
.steam .wisp {
  position:absolute; bottom:24%; left:50%;
  width:170px; height:170px; border-radius:50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,250,245,.72), rgba(255,248,240,.26) 45%, transparent 70%);
  filter: blur(17px); opacity:0; transform: translate(-50%, 0) scale(.5);
  mix-blend-mode: screen; will-change: transform, opacity;
  animation: steam-rise 8s ease-in infinite;
}
.steam .w1 { left:42%; animation-duration:7.5s; animation-delay:0s;   width:150px; }
.steam .w2 { left:50%; animation-duration:9s;   animation-delay:1.6s; width:200px; }
.steam .w3 { left:58%; animation-duration:8s;   animation-delay:3.1s; width:160px; }
.steam .w4 { left:46%; animation-duration:10s;  animation-delay:4.4s; width:185px; }
.steam .w5 { left:55%; animation-duration:8.6s; animation-delay:5.8s; width:140px; }
@keyframes steam-rise {
  0%   { opacity:0;   transform: translate(-50%, 0)     scale(.45); }
  15%  { opacity:.8; }
  55%  { opacity:.55; transform: translate(calc(-50% + 26px), -42vh) scale(1.15); }
  100% { opacity:0;   transform: translate(calc(-50% - 14px), -82vh) scale(1.7); }
}
.hero-tag {
  display:inline-flex; align-items:center; gap:8px; font-family: var(--display); font-weight:600;
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; white-space:nowrap;
  background: rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px);
  padding:9px 16px; border-radius:999px; margin-bottom:26px; max-width:100%;
}
.hero-tag b { color: #ffd2cd; }
.hero h1 { font-size: clamp(52px, 10vw, 132px); line-height: .92; letter-spacing: -.03em; }
.hero h1 em { font-style: normal; color: #ff6b5e; }
.hero-sub { font-size: clamp(19px, 2.4vw, 28px); font-family: var(--display); font-weight: 500; margin: 22px 0 0; max-width: 540px; color: rgba(255,255,255,.94); }
.hero-sub .heart { color: var(--red); filter: drop-shadow(0 0 8px var(--red-glow)); }
.hero-cta { display:flex; flex-wrap:wrap; gap:14px; margin-top: 38px; }
.hero-feats { display:flex; flex-wrap:wrap; gap: 10px 26px; margin-top: 42px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-feat { display:flex; align-items:center; gap:11px; font-family: var(--display); font-weight:500; font-size: 15.5px; }
.hero-feat svg { width: 21px; height: 21px; color:#ff8077; flex:none; }
.scroll-hint { position:absolute; left:50%; bottom:24px; transform:translateX(-50%); z-index:3; display:flex; flex-direction:column; align-items:center; gap:8px; font-family: var(--display); font-size:11px; letter-spacing:.2em; text-transform:uppercase; color: rgba(255,255,255,.7); }
.scroll-hint .mouse { width:24px; height:38px; border:2px solid rgba(255,255,255,.5); border-radius:14px; position:relative; }
.scroll-hint .mouse::after { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:4px; height:7px; border-radius:3px; background:#fff; animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:0; transform:translate(-50%,0);} 30%{opacity:1;} 70%{opacity:1; transform:translate(-50%,9px);} 100%{opacity:0; transform:translate(-50%,12px);} }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,6vw,80px); align-items:center; }
.about-copy h2 { font-size: clamp(32px, 4.6vw, 54px); }
.about-copy .lead { font-size: clamp(19px, 1.8vw, 23px); color: var(--ink); margin: 24px 0 0; font-family: var(--display); font-weight:500; line-height:1.45; }
.about-copy p { color: var(--ink-2); margin: 18px 0 0; }
.about-stats { display:flex; gap: 36px; margin-top: 34px; flex-wrap:wrap; }
.about-stats .st b { display:block; font-family: var(--display); font-weight:700; font-size: 38px; color: var(--red); line-height:1; }
.about-stats .st span { font-size: 14px; color: var(--ink-3); font-weight:500; }
.about-img { position:relative; }
.about-img .ph { aspect-ratio: 4 / 5; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.about-img .badge {
  position:absolute; bottom: -24px; left: -24px;
  background:#fff; border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--sh-md);
  display:flex; align-items:center; gap:14px; max-width: 260px;
}
.about-img .badge .em { width:46px; height:46px; border-radius:12px; background: var(--red-soft); display:grid; place-items:center; font-size:24px; flex:none; }
.about-img .badge p { margin:0; font-size:14px; line-height:1.35; color: var(--ink-2); }
.about-img .badge b { color: var(--ink); font-family: var(--display); }

/* ============================================================
   DAILY MENU
   ============================================================ */
.daily { background: var(--ink); color:#fff; position:relative; overflow:hidden; }
.daily::before { content:""; position:absolute; right:-10%; top:-20%; width:55%; height:140%; background: radial-gradient(circle, rgba(217,43,43,.22), transparent 60%); }
.daily .wrap { position:relative; z-index:1; }
.daily-top { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom: 44px; }
.daily-top h2 { font-size: clamp(34px, 5vw, 58px); }
.daily .eyebrow { color: #ff8077; }
.daily .eyebrow::before { background:#ff8077; }
.daily-date { font-family: var(--display); font-weight:600; font-size:15px; color: rgba(255,255,255,.7); display:flex; align-items:center; gap:10px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); padding:10px 18px; border-radius:999px; }
.daily-date i { width:8px; height:8px; border-radius:50%; background:#54d873; box-shadow:0 0 0 4px rgba(84,216,115,.2); }
.daily-soup { display:flex; align-items:center; gap:16px; padding:20px 24px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius: var(--r-md); margin-bottom:18px; }
.daily-soup .lbl { font-family: var(--display); font-weight:700; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:#ff8077; }
.daily-soup b { font-family: var(--display); font-size:19px; }
.daily-soup span { color: rgba(255,255,255,.6); font-size:15px; }
.daily-soup .pr { margin-left:auto; font-family: var(--display); font-weight:600; color: rgba(255,255,255,.55); }
.daily-list { display:grid; gap:14px; }
.daily-item {
  display:flex; align-items:center; gap:22px; padding: 22px 26px;
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius: var(--r-md);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), background .3s, border-color .3s;
}
.daily-item:hover { transform: translateX(6px); background: rgba(255,255,255,.09); border-color: rgba(255,128,119,.5); }
.daily-item .n { font-family: var(--display); font-weight:700; font-size:22px; flex:none; width:34px; color: rgba(255,255,255,.35); }
.daily-thumb { flex:none; width:88px; height:88px; border-radius:16px; overflow:hidden; box-shadow: 0 10px 24px -10px rgba(0,0,0,.7); }
.daily-thumb img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.daily-item:hover .daily-thumb img { transform: scale(1.08); }
.daily-item .meat { flex:1; min-width:0; }
.daily-item .meat b { font-family: var(--display); font-weight:600; font-size: clamp(19px,2vw,24px); display:block; }
.daily-item .meat span { color: rgba(255,255,255,.6); font-size:15px; }
.daily-item .price { font-family: var(--display); font-weight:700; font-size:26px; color:#ff8077; flex:none; }
.daily-note { margin-top: 26px; font-size:14px; color: rgba(255,255,255,.5); display:flex; align-items:center; gap:9px; }

/* ============================================================
   PERMANENT MENU
   ============================================================ */
.menu-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: clamp(18px,2.4vw,30px); }
.dish {
  background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); overflow:hidden;
  display:flex; flex-direction:column; box-shadow: var(--sh-sm);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.dish .ph { aspect-ratio: 4 / 3; }
.dish:hover .ph { filter: saturate(1.05); }
.dish-body { padding: 22px 24px 26px; display:flex; flex-direction:column; flex:1; }
.dish .tag { align-self:flex-start; font-family: var(--display); font-weight:600; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--red); background: var(--red-soft); padding:5px 11px; border-radius:999px; margin-bottom:13px; }
.dish h3 { font-size:23px; }
.dish p { color: var(--ink-2); font-size:15px; margin:9px 0 0; flex:1; }
.dish-foot { display:flex; align-items:center; justify-content:space-between; margin-top:20px; }
.dish-foot .price { font-family: var(--display); font-weight:700; font-size:26px; color: var(--ink); }
.dish-foot .add { width:44px; height:44px; border-radius:50%; border:1.5px solid var(--line); background:#fff; display:grid; place-items:center; color: var(--red); transition: background .2s, color .2s, transform .2s, border-color .2s; }
.dish-foot .add:hover { background: var(--red); color:#fff; border-color: var(--red); transform: rotate(90deg); }
.dish-foot .add svg { width:20px; height:20px; }

/* ============================================================
   WHY US
   ============================================================ */
.why { background: var(--cream); }
.why-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2.2vw,26px); }
.feat-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.feat-ic { width:60px; height:60px; border-radius:16px; background: var(--red-soft); display:grid; place-items:center; color: var(--red); margin-bottom:22px; transition: background .35s, color .35s; }
.feat-ic svg { width:30px; height:30px; }
.feat-card:hover .feat-ic { background: var(--red); color:#fff; }
.feat-card h3 { font-size:22px; }
.feat-card p { color: var(--ink-2); font-size:15.5px; margin:10px 0 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { columns: 4; column-gap: clamp(12px,1.6vw,20px); }
.gallery-grid .gitem { break-inside: avoid; margin-bottom: clamp(12px,1.6vw,20px); border-radius: var(--r-md); overflow:hidden; cursor: zoom-in; position:relative; box-shadow: var(--sh-sm); }
.gallery-grid .gitem .ph { width:100%; }
.gallery-grid .gitem::before {
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, transparent 50%, rgba(217,43,43,.35));
  opacity:0; transition: opacity .3s;
}
.gallery-grid .gitem:hover::before { opacity:1; }
.gallery-grid .gitem .zoom { position:absolute; z-index:2; right:14px; bottom:14px; width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,.9); display:grid; place-items:center; color: var(--red); opacity:0; transform: scale(.7); transition: opacity .3s, transform .3s; }
.gallery-grid .gitem:hover .zoom { opacity:1; transform: scale(1); }

/* Lightbox */
.lightbox { position:fixed; inset:0; z-index:200; background: rgba(20,14,13,.92); backdrop-filter: blur(8px); display:none; place-items:center; opacity:0; transition: opacity .3s; }
.lightbox.open { display:grid; opacity:1; }
.lightbox-inner { width:min(86vw,820px); max-height:84vh; }
.lightbox-inner .ph { aspect-ratio: 4/3; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lightbox-cap { color: rgba(255,255,255,.85); font-family: var(--display); text-align:center; margin-top:18px; font-size:15px; }
.lb-close { position:absolute; top:24px; right:24px; width:52px; height:52px; border-radius:50%; border:0; background:rgba(255,255,255,.14); color:#fff; font-size:24px; display:grid; place-items:center; transition: background .2s; }
.lb-close:hover { background: var(--red); }
.lb-nav { position:absolute; top:50%; transform:translateY(-50%); width:56px; height:56px; border-radius:50%; border:0; background:rgba(255,255,255,.14); color:#fff; display:grid; place-items:center; transition: background .2s; }
.lb-nav:hover { background: var(--red); }
.lb-nav svg { width:24px; height:24px; }
.lb-prev { left: clamp(12px,3vw,40px); } .lb-next { right: clamp(12px,3vw,40px); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--ink); color:#fff; overflow:hidden; }
.reviews .eyebrow { color:#ff8077; } .reviews .eyebrow::before { background:#ff8077; }
.reviews .section-head p { color: rgba(255,255,255,.7); }
.rev-viewport { overflow:hidden; }
.rev-track { display:flex; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.rev-card { flex: 0 0 100%; padding: 8px; }
.rev-inner { background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: clamp(32px,4vw,52px); }
.rev-stars { display:flex; gap:4px; color:#ffb800; margin-bottom:22px; }
.rev-stars svg { width:22px; height:22px; }
.rev-quote { font-family: var(--display); font-weight:500; font-size: clamp(20px,2.6vw,30px); line-height:1.4; letter-spacing:-.01em; }
.rev-author { display:flex; align-items:center; gap:15px; margin-top:30px; }
.rev-author .av { width:52px; height:52px; border-radius:50%; background: var(--red); display:grid; place-items:center; font-family:var(--display); font-weight:700; font-size:20px; color:#fff; flex:none; }
.rev-author b { font-family: var(--display); font-size:18px; display:block; }
.rev-author span { color: rgba(255,255,255,.6); font-size:14px; }
.rev-ctrl { display:flex; align-items:center; gap:18px; margin-top:34px; }
.rev-dots { display:flex; gap:9px; }
.rev-dots button { width:9px; height:9px; border-radius:999px; border:0; background: rgba(255,255,255,.25); transition: width .3s, background .3s; }
.rev-dots button.active { width:28px; background:#ff8077; }
.rev-arrows { margin-left:auto; display:flex; gap:10px; }
.rev-arrows button { width:50px; height:50px; border-radius:50%; border:1px solid rgba(255,255,255,.2); background:transparent; color:#fff; display:grid; place-items:center; transition: background .2s, border-color .2s; }
.rev-arrows button:hover { background: var(--red); border-color: var(--red); }
.rev-arrows svg { width:22px; height:22px; }
.rev-google { display:inline-flex; align-items:center; gap:10px; margin-top:40px; font-size:14px; color: rgba(255,255,255,.6); }
.rev-google b { color:#fff; font-family: var(--display); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items:stretch; }
.contact-info { display:flex; flex-direction:column; }
.contact-cards { display:grid; gap:16px; margin-top: 8px; }
.ci-card { display:flex; gap:18px; align-items:flex-start; padding:24px; border:1px solid var(--line); border-radius: var(--r-md); background:#fff; transition: box-shadow .3s, transform .3s; }
.ci-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.ci-card .ic { width:50px; height:50px; border-radius:13px; background: var(--red-soft); color: var(--red); display:grid; place-items:center; flex:none; }
.ci-card .ic svg { width:24px; height:24px; }
.ci-card h4 { font-family: var(--display); font-size:13px; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-3); margin:0 0 5px; }
.ci-card p { margin:0; font-size:17px; color: var(--ink); font-weight:500; }
.ci-card a { color: var(--red); }
.hours-row { display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px dashed var(--line); font-size:16px; }
.hours-row:last-child { border-bottom:0; }
.hours-row span:first-child { color: var(--ink-2); }
.hours-row b { font-family: var(--display); }
.hours-row.closed b { color: var(--ink-3); font-weight:500; }
.hours-row.today { color: var(--red); }
.hours-row.today b { color: var(--red); }
.map-wrap { border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--sh-md); position:relative; min-height: 440px; display:flex; }
.map-wrap .ph { flex:1; }
.map-pin { position:absolute; top:50%; left:50%; transform:translate(-50%,-100%); z-index:2; }
.map-pin .dot { width:24px; height:24px; background: var(--red); border:4px solid #fff; border-radius:50%; box-shadow: var(--sh-md); }
.map-pin .pulse { position:absolute; top:0; left:0; width:24px; height:24px; border-radius:50%; background: var(--red-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0%{transform:scale(1); opacity:.7;} 100%{transform:scale(3.5); opacity:0;} }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #181312; color: rgba(255,255,255,.7); padding-block: clamp(56px,7vw,84px) 32px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px,4vw,60px); padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color:#fff; margin-bottom:18px; }
.footer-about p { font-size:15px; max-width: 320px; line-height:1.6; }
.footer-slogan { color:#ff8077; font-family: var(--display); font-weight:600; margin-top:16px; }
.footer h5 { font-family: var(--display); font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:#fff; margin:0 0 18px; }
.footer-col a, .footer-col p { display:block; color: rgba(255,255,255,.7); font-size:15px; margin-bottom:11px; transition: color .2s; }
.footer-col a:hover { color:#ff8077; }
.footer-social { display:flex; gap:10px; margin-top:6px; }
.footer-social a { width:42px; height:42px; border-radius:12px; background: rgba(255,255,255,.08); display:grid; place-items:center; color:#fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-social svg { width:20px; height:20px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; padding-top:28px; font-size:13.5px; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color:#fff; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floats { position:fixed; right: clamp(16px,3vw,28px); bottom: clamp(16px,3vw,28px); z-index:80; display:flex; flex-direction:column; gap:13px; align-items:flex-end; }
.float-menu-btn {
  display:inline-flex; align-items:center; gap:10px; padding:14px 22px; border-radius:999px;
  background: var(--red); color:#fff; border:0; font-family:var(--display); font-weight:600; font-size:15px;
  box-shadow: var(--sh-lg); transition: transform .25s, box-shadow .25s;
}
.float-menu-btn:hover { transform: translateY(-3px) scale(1.02); }
.float-menu-btn svg { width:19px; height:19px; }
.float-round { width:58px; height:58px; border-radius:50%; border:0; display:grid; place-items:center; color:#fff; box-shadow: var(--sh-lg); transition: transform .25s; position:relative; }
.float-round:hover { transform: translateY(-3px) scale(1.05); }
.float-round svg { width:27px; height:27px; }
.float-wa { background: #25D366; }
.float-call { background: var(--ink); }
.float-round .tip {
  position:absolute; right: calc(100% + 12px); top:50%; transform:translateY(-50%);
  background: var(--ink); color:#fff; font-size:13px; font-family:var(--display); font-weight:500;
  padding:7px 13px; border-radius:8px; white-space:nowrap; opacity:0; pointer-events:none; transition: opacity .2s; box-shadow: var(--sh-md);
}
.float-round:hover .tip { opacity:1; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.08s; } .reveal.d2 { transition-delay:.16s; } .reveal.d3 { transition-delay:.24s; }
.reveal.d4 { transition-delay:.32s; } .reveal.d5 { transition-delay:.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; }
  .scroll-hint .mouse::after, .map-pin .pulse { animation: none; }
  .steam { display:none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { columns: 3; }
}
@media (max-width: 1000px) {
  .nav-links, .nav-cta, .lang { display:none; }
  .nav-burger { display:block; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav-burger { display:block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order:-1; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .gallery-grid { columns: 2; }
  .daily-item { gap:14px; padding:18px 20px; }
  .daily-item .n { display:none; }
  .daily-thumb { width:64px; height:64px; border-radius:13px; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex:1; }
  .daily-soup { flex-wrap:wrap; }
  .daily-soup .pr { margin-left:0; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-menu-btn span { display:none; }
  .float-menu-btn { width:58px; height:58px; padding:0; justify-content:center; border-radius:50%; }
}
