

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

:root {
    --bg: #0a0a0a;
    --bg-card: #121215;
    --bg-raised: #161619;
    --border: #222228;
    --white: #f0f0f0;
    --white-dim: #8e8e96;
    --orange: #e8a030;
    --orange-hover: #f0b040;
    --orange-glow: rgba(232,160,48,.18);
    --red: #d4423a;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Bebas Neue', Impact, sans-serif;
    --ease: cubic-bezier(.22,.61,.36,1);
    --radius: 12px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img {
  display: block;
  max-width: 100%;
  user-select: none;
    -webkit-user-drag: none;
}
svg {
  user-select: none;
}
ul { list-style: none; }
::selection { background: var(--orange); color: #000; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.hidden { display: none !important; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: .9rem 2.5rem;
  transition: background .35s var(--ease), padding .35s, box-shadow .35s;
}
.nav-logo { justify-self: start; }
.nav-scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.04);
  padding: .65rem 2.5rem;
}
.nav-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.06);
  transition: border-color .3s;
}
@media (hover: hover) {
  .nav-logo img:hover { border-color: var(--orange); }
}

.nav-center {
  display: flex;
  justify-content: center;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .25s;
}
.nav-links a:hover { color: var(--orange); }

.nav-right {
  display: flex;
  align-items: center;
  gap: .8rem;
  justify-self: end;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  background: var(--orange);
  color: #000;
  border-radius: 100px;
  transition: all .3s var(--ease);
}
.nav-cta:hover {
  background: var(--orange-hover);
  box-shadow: 0 0 20px var(--orange-glow);
  transform: translateY(-1px);
}

.lang-btn {
  display: flex; align-items: center; gap: .2rem;
  background: none;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .3rem .6rem;
  font-family: var(--font);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .06em; color: #fff;
  cursor: pointer; transition: border-color .3s;
}
.lang-btn:hover { border-color: rgba(255,255,255,.25); }
.lang-btn-active { color: var(--orange); }
.lang-btn-divider { color: rgba(255,255,255,.12); }
.lang-btn-inactive { color: rgba(255,255,255,.3); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 101;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 1px; transition: .3s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.2rem 0; }
.mobile-menu a {
  font-size: 1.3rem; font-weight: 600;
  color: rgba(255,255,255,.8); transition: color .3s;
}
.mobile-menu a:hover { color: var(--orange); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
  filter: brightness(.45);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,.75) 0%,
      rgba(10,10,10,.3)  35%,
      rgba(10,10,10,.5)  65%,
      rgba(10,10,10,.98) 100%
    );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 620px;
  padding: 2rem;
  animation: fadeUp .7s var(--ease) both;
}
.hero-logo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(232,160,48,.35);
  box-shadow: 0 0 50px rgba(232,160,48,.15);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: .7rem;
  color: var(--orange);
  text-shadow:
    0 2px 4px rgba(0,0,0,.8),
    0 0 40px rgba(232,160,48,.2);
}
.hero-sub {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.hero-btns {
  display: flex; gap: .75rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero-hours {
  display: inline-flex;
  align-items: center; gap: 1.5rem;
  padding: .55rem 1.4rem;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero-hour { text-align: center; }
.hero-hour-label {
  display: block;
  font-size: .58rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white-dim);
}
.hero-hour-value { font-size: .82rem; font-weight: 600; color: #fff; }
.hero-hour-sep { width: 1px; height: 26px; background: rgba(255,255,255,.1); }

.hero-peaks {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3; line-height: 0;
}
.hero-peaks svg { width: 100%; height: 70px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex; align-items: center;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .75rem 1.7rem;
  border-radius: 100px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--orange); color: #000;
  border: 1px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 4px 28px var(--orange-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.04);
  transform: translateY(-2px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.menu {
  background: var(--bg);
  padding: 4.5rem 0 3rem;
}
.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: .75rem;
}

.loc-tabs {
  display: flex;
  gap: .35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .2rem;
}
.loc-tab {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--white-dim);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.loc-tab:hover { color: #fff; }
.loc-tab.active {
  background: var(--orange);
  color: #000;
}

.menu-sizes {
  display: flex;
  gap: .4rem;
  margin-bottom: 1rem;
}
.menu-size-badge {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
  border: 1px solid var(--orange);
  color: var(--orange);
}

.menu-cat {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 1.5rem 0 .5rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}

.menu-item {
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.menu-row {
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.menu-nr {
  font-weight: 700; font-size: .78rem;
  color: var(--orange); flex-shrink: 0;
}
.menu-name {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-weight: 700; font-size: .92rem;
  color: #fff; white-space: nowrap;
}
.menu-ico { 
  width: 13px; height: 13px; 
  color: var(--orange); 
  flex-shrink: 0;
}
.ico-veg {
  color: #6eb761;
}
.ico-spicy {
  color: #ff4757;
}
.ico-star {
  color: #f1c40f;
}
.menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,.1);
  min-width: 16px;
  margin: 0 .25rem;
  align-self: baseline;
  position: relative; top: -.3rem;
}
.menu-price {
  font-weight: 700; font-size: .85rem;
  color: var(--orange);
  white-space: nowrap; flex-shrink: 0;
}
.menu-desc {
  font-size: .76rem;
  color: var(--white-dim);
  margin-top: .1rem;
  line-height: 1.45;
}

.menu-bottom { margin-top: 1.5rem; }

.menu-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.menu-extra-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}
.menu-extra-box h4 {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .35rem;
}
.menu-extra-price {
  font-weight: 700; font-size: .82rem; color: #fff;
}
.menu-extra-price small {
  font-weight: 400; font-size: .65rem; color: var(--white-dim);
}
.menu-extra-items {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: .4rem;
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.tags-list span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
}
.extra-list {
  margin-top: 0.5rem;
}
.extra-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,0.7);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.extra-list li:last-child { border-bottom: 0; }
.extra-list li span:last-child {
  font-weight: 700; color: var(--orange);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.drinks-grid-sm {
  grid-template-columns: 1fr;
  max-width: 360px;
  margin: 0 auto;
}
.drink-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.drink-card h4 {
  display: flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 700;
  margin-bottom: .6rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}
.cat-ico {
  width: 13px; height: 13px; color: var(--orange); flex-shrink: 0;
}
.drink-card li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: .4rem 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255,255,255,.03);
  line-height: 1.4;
}
.drink-name {
  display: flex;
  flex-direction: column;
}
.drink-desc {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-top: 0.15rem;
  line-height: 1.3;
}
.drink-card li:last-child { border-bottom: 0; }
.drink-card li > span:last-child {
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
}
.drink-sub {
  font-weight: 700 !important;
  color: rgba(255,255,255,.45) !important;
  text-transform: uppercase;
  font-size: .6rem !important;
  letter-spacing: .1em;
  padding-top: .5rem !important;
  border-bottom: none !important;
  display: block !important;
}

.menu-note {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  background: rgba(232,160,48,.06);
  border: 1px solid rgba(232,160,48,.15);
  border-radius: 8px;
  padding: .8rem 1rem;
  margin-top: 2rem;
}
.note-ico { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: .15rem; }
.flame-ico { width: 13px; height: 13px; color: var(--orange); margin-left: .2rem; vertical-align: text-top; }
.menu-note p {
  font-size: .8rem;
  color: var(--orange);
  line-height: 1.4;
}

.gallery {
  background: var(--bg);
  padding: 2rem 0 5rem;
}
.gallery-slider-wrapper {
  position: relative;
  width: calc(100% + 2.5rem);
  margin-left: -1.25rem;
  padding: 0 1.25rem;
}
.gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-grid::-webkit-scrollbar {
  display: none;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--border);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.gallery-arrow:hover {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.gallery-arrow-prev { left: 0.5rem; }
.gallery-arrow-next { right: 0.5rem; }

.gallery-item {
  flex: 0 0 28%; 
  scroll-snap-align: start;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
  padding: 1rem;
}
.lightbox.active {
  opacity: 1; pointer-events: auto;
}
.lightbox-img {
  max-width: calc(100% - 2rem);
  max-height: calc(100vh - 4rem);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; padding: 0;
  color: #fff; font-size: 2.5rem; line-height: 1;
  cursor: pointer; transition: color 0.2s;
  user-select: none;
}
.lightbox-close:hover { color: var(--orange); }

.places {
  background: var(--bg-card);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.places .section-title { text-align: center; }
.places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.place-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.place-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.place-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.place-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transition: transform .5s var(--ease);
}
.place-card:hover .place-card-img img { transform: scale(1.03); }

.place-card-body { padding: 1.5rem; }
.place-card-body h3 {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.place-card-body h3 svg {
  color: var(--orange);
}
.place-card-addr {
  font-size: .82rem;
  color: var(--white-dim);
  margin-bottom: .8rem;
}
.place-card-hours {
  display: flex; gap: 1.5rem;
  margin-bottom: .8rem;
}
.place-card-hours div { display: flex; flex-direction: column; }
.place-card-hours span {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white-dim);
}
.place-card-hours strong { font-size: .88rem; color: #fff; }
.place-card-phone {
  display: inline-block;
  font-size: .85rem; font-weight: 600;
  color: var(--orange);
  margin-bottom: .8rem;
  transition: color .3s;
}
.place-card-phone:hover { color: var(--orange-hover); }
.place-card-tags {
  display: flex; gap: .35rem; flex-wrap: wrap;
}
.place-card-tags span {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white-dim);
}
.place-card-map {
  width: 100%;
  height: 220px;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.place-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) brightness(0.7) contrast(1.2);
  transition: filter .5s var(--ease);
}
.place-card:hover .place-card-map iframe {
  filter: grayscale(30%) brightness(0.9) contrast(1.1);
}

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.floating-wrapper {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end;
}
.floating-menu {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s var(--ease);
  transform-origin: bottom right;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.floating-menu.active {
  opacity: 1; pointer-events: auto; transform: translateY(0) scale(1);
}
.floating-menu-item {
  display: flex; flex-direction: column;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: var(--white);
  border-radius: 8px;
  transition: background 0.2s;
}
.floating-menu-item:hover { background: rgba(255,255,255,0.05); }
.floating-menu-item strong { color: var(--orange); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.floating-menu-item span { font-weight: 600; font-size: 1rem; }

.floating-btn {
  width: 56px; height: 56px;
  background: var(--orange);
  color: #000;
  border: none; border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232, 160, 48, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (hover: hover) {
  .floating-btn:hover { transform: scale(1.05); box-shadow: 0 6px 25px rgba(232, 160, 48, 0.6); }
}
.floating-btn svg { width: 24px; height: 24px; }

@media (min-width: 769px) {
  .floating-wrapper { display: none; }
}

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .menu-extras-grid { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr 1fr; }
  .places-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { flex: 0 0 42%; aspect-ratio: 1 / 1; }
}

@media (max-width: 768px) {
  .nav { grid-template-columns: 1fr auto auto; padding: .7rem 1.25rem; gap: 1rem; }
  .nav-center, .nav-cta { display: none; }
  .nav-burger { display: flex; justify-self: end; }

  .container { padding: 0 1.25rem; }
  .menu { padding: 3rem 0 2rem; }
  .drinks-grid { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: 1fr; }
  

  .loc-tabs { width: 100%; }
  .loc-tab { flex: 1; text-align: center; }
  .gallery-item { flex: 0 0 85%; }
}

@media (max-width: 480px) {
  .hero-bg img { object-position: 30% 55%; }
  .hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-hours { flex-direction: column; gap: .4rem; padding: .7rem 1.5rem; border-radius: 16px; }
  .hero-hour-sep { width: 36px; height: 1px; }
  .menu-row { flex-wrap: wrap; }
  .menu-dots { display: none; }
  .menu-price { margin-left: auto; }
  .menu-head { flex-direction: column; align-items: flex-start; }
  .place-card-hours { flex-direction: column; gap: .4rem; }
}

.place-card-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.place-card-contact-row .place-card-phone {
  margin-bottom: 0;
}
.place-card-socials { display: flex; gap: .4rem; }
.place-card-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white-dim);
  transition: all .25s var(--ease);
}
@media (hover: hover) {
  .place-card-socials a:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(232,160,48,.06);
  }
}
.footer-brand-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.5rem;
}
.footer-brand-centered .footer-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: .6rem;
}
.footer-brand-centered p {
  color: var(--white-dim);
  font-size: .85rem;
}
.footer-bottom { text-align: center; padding: 1rem 0; }
.footer-bottom p { font-size: .68rem; color: rgba(255,255,255,.2); }
