/* ============================================================================
   EATO — STYLES  (mobile-first)

   Every rule outside a media query targets the SMALLEST screens first.
   Screens are added with min-width queries, so a phone downloads and applies
   the simplest layout and larger screens progressively enhance it.

   Breakpoints
     480px  large phones       — two-up form fields
     560px  phablets           — header label, 2-up cards
     640px  small tablets      — desktop chrome replaces the bottom action bar
     760px  tablets            — 2-up menu, 4-up gallery, location in top bar
     980px  laptops            — inline nav, side-by-side about/visit/4-col footer
    1200px  desktops           — full-width refinements

   Contents
     1. Tokens       6. Header        11. Menu
     2. Base         7. Hero          12. Gallery + lightbox
     3. Buttons      8. Quick actions 13. Visit / contact
     4. Notice       9. Sections      14. Footer & floating UI
     5. Topbar      10. About         15. Motion + print
   ============================================================================ */

/* ------------------------------------------------------------- 1. TOKENS */

:root {
  --bg: #0a0a0c;
  --bg-2: #101014;
  --surface: #15151a;
  --surface-2: #1c1c23;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --text: #f6f4f1;
  --muted: #9c99a4;
  --muted-2: #716e7a;
  --accent: #f5a524;
  --accent-2: #ff7a1a;
  --accent-soft: rgba(245, 165, 36, 0.12);
  --green: #35c46a;
  --red: #ff5a5a;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
  --gutter: 16px;
  --font-display: "Outfit", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --header-h: 66px;
  --bar-h: 72px;
}

/* --------------------------------------------------------------- 2. BASE */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Reserves room for the fixed mobile action bar. Removed at 640px. */
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
  /* clip (not hidden) so position:sticky keeps working and nothing scrolls sideways */
  overflow-x: clip;
  overflow-wrap: break-word;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* Comfortable default tap target */
button, .btn, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grad {
  background: linear-gradient(92deg, var(--accent), #ffc86b 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ico { width: 18px; height: 18px; flex: none; }

/* ------------------------------------------------------------ 3. BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;           /* comfortable touch target */
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn-lg { min-height: 52px; padding: 15px 26px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1206;
  box-shadow: 0 10px 26px rgba(245, 165, 36, 0.24);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-2);
  color: var(--text);
}

.btn-ghost { color: var(--muted); padding-inline: 12px; }

/* Hover effects only on devices that actually hover */
@media (hover: hover) {
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(245, 165, 36, 0.34); }
  .btn-outline:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }
  .btn-ghost:hover { color: var(--text); }
}

.btn:active { transform: scale(0.98); }

/* ------------------------------------------------------------- 4. NOTICE */

.draft-notice {
  background: linear-gradient(90deg, rgba(245, 165, 36, 0.16), rgba(255, 122, 26, 0.08));
  border-bottom: 1px solid rgba(245, 165, 36, 0.28);
  font-size: 0.79rem;
  line-height: 1.5;
}

.draft-inner {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 0;
}

.draft-inner p { margin: 0; color: #f3d9ab; flex: 1; min-width: 0; }
.draft-inner strong { color: var(--accent); }

.draft-dot {
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  box-shadow: 0 0 0 4px rgba(245, 165, 36, 0.18);
}

.draft-close {
  background: none;
  border: 0;
  color: #f3d9ab;
  cursor: pointer;
  padding: 6px;
  margin: -4px -6px 0 0;
  display: grid;
  place-items: center;
  opacity: 0.75;
}

.draft-close .ico { width: 15px; height: 15px; }

/* ------------------------------------------------------------- 5. TOPBAR */

.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  position: relative;
  z-index: 40;
}

.topbar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  min-height: 42px;
  padding-block: 5px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
  min-height: 28px;
}

.topbar-item .ico { width: 14px; height: 14px; color: var(--accent); }

/* Location is hidden on phones — it is already in the hero and the footer. */
.topbar-loc { display: none; color: var(--muted-2); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid var(--line-2);
  color: var(--muted);
}

.status-pill.is-open { color: #bbf7d0; background: rgba(53, 196, 106, 0.12); border-color: rgba(53, 196, 106, 0.3); }
.status-pill.is-closed { color: #fecaca; background: rgba(255, 90, 90, 0.1); border-color: rgba(255, 90, 90, 0.28); }
.status-pill.is-unknown { color: var(--muted); }

/* ------------------------------------------------------------- 6. HEADER */

#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

#site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 12, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: 9px; flex: none; }

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #17110a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(245, 165, 36, 0.26);
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.14rem;
  letter-spacing: 0.09em;
}

/* Nav is a slide-down drawer by default; becomes an inline row at 980px. */
#primary-nav {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 var(--gutter);
  background: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0 solid var(--line);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.34s ease, opacity 0.24s ease, padding 0.24s ease, border-width 0.24s ease;
}

#primary-nav.is-open {
  max-height: 340px;
  opacity: 1;
  padding-block: 10px 18px;
  border-bottom-width: 1px;
}

#primary-nav a {
  display: block;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

#primary-nav a.is-current { color: var(--accent); background: var(--accent-soft); }

.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

/* Phones: the primary button collapses to an icon-only pill. */
.header-cta .btn-primary { padding: 11px; min-height: 44px; width: 44px; }
.header-cta .cta-label { display: none; }
.header-cta .btn-ghost { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 0;
  cursor: pointer;
  flex: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------- 7. HERO */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 74vh;
  min-height: 74svh;      /* stable on mobile browsers that collapse their chrome */
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: -2;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.86) 0%, rgba(10, 10, 12, 0.93) 52%, rgba(10, 10, 12, 0.98) 100%),
    radial-gradient(130% 70% at 22% 8%, rgba(245, 165, 36, 0.14), transparent 62%);
}

.hero-inner { padding: 38px 0 52px; max-width: 760px; }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-status.is-open { color: #bbf7d0; border-color: rgba(53, 196, 106, 0.34); background: rgba(53, 196, 106, 0.1); }
.hero-status.is-closed { color: #fecaca; border-color: rgba(255, 90, 90, 0.3); background: rgba(255, 90, 90, 0.08); }

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}

.hero-title {
  font-size: clamp(1.9rem, 8.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-size: clamp(0.95rem, 3.6vw, 1.16rem);
  color: #c9c6cf;
  max-width: 56ch;
  margin-bottom: 24px;
}

.hero-cta { display: grid; gap: 10px; }

.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-loc .ico { width: 16px; height: 16px; color: var(--accent); }

/* ------------------------------------------------------- 8. QUICK ACTIONS */

.quick-section { margin-top: -26px; position: relative; z-index: 5; padding-bottom: 4px; }

.quick-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }

.quick-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quick-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex: none;
}

.quick-txt { display: flex; flex-direction: column; min-width: 0; }
.quick-txt strong { font-size: 0.95rem; }
.quick-txt em { font-style: normal; font-size: 0.82rem; color: var(--muted); overflow-wrap: anywhere; }

.quick-arrow { margin-left: auto; color: var(--muted-2); flex: none; transition: transform 0.2s ease, color 0.2s ease; }

@media (hover: hover) {
  .quick-card:hover { transform: translateY(-4px); border-color: rgba(245, 165, 36, 0.42); background: var(--surface-2); }
  .quick-card:hover .quick-arrow { transform: translateX(4px); color: var(--accent); }
}

/* ----------------------------------------------------------- 9. SECTIONS */

.section { padding: 54px 0; }

.section-head { margin-bottom: 26px; }

.section-head h2 {
  font-size: clamp(1.55rem, 6.5vw, 2.85rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-sub { color: var(--muted); margin: 0; font-size: 0.95rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* -------------------------------------------------------------- 10. ABOUT */

.about { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }

.about-copy h2 { font-size: clamp(1.5rem, 6vw, 2.6rem); font-weight: 800; }
.about-copy p { color: var(--muted); font-size: 0.96rem; }

.about-facts { display: grid; gap: 10px; margin-top: 22px; }

.fact {
  display: flex;
  flex-direction: column;
  padding: 13px 16px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.fact strong { font-size: 0.94rem; }
.fact span { color: var(--muted); font-size: 0.86rem; }

.about-media { margin: 0; position: relative; }

.about-media img {
  border-radius: 18px;
  border: 1px solid var(--line);
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.about-media figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.79rem;
  color: #ddd9e2;
  border: 1px solid var(--line-2);
}

.hl-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }

.hl-card {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hl-star {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 12px;
}

.hl-star .ico { width: 16px; height: 16px; }
.hl-card h3 { font-size: 1.03rem; margin-bottom: 7px; }
.hl-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

@media (hover: hover) {
  .hl-card:hover { transform: translateY(-4px); border-color: rgba(245, 165, 36, 0.36); }
}

/* --------------------------------------------------------------- 11. MENU */

.menu-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  /* Tabs settle under the left gutter when swiped, so a tab is never left
     half-cut once the finger lifts. */
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--gutter);
  /* Keep the tab row inside the gutter when it scrolls */
  margin-inline: calc(var(--gutter) * -1);
  padding: 2px var(--gutter) 10px;
  margin-bottom: 20px;
}

.menu-tabs::-webkit-scrollbar { height: 4px; }
.menu-tabs::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }

.tab {
  flex: none;
  scroll-snap-align: start;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.91rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s ease;
}

.tab.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #1a1206;
}

@media (hover: hover) {
  .tab:hover { color: var(--text); border-color: var(--line-2); }
  .tab.is-active:hover { color: #1a1206; }
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fade 0.3s ease; }

@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.menu-note { color: var(--muted-2); font-size: 0.85rem; margin-bottom: 16px; }
.menu-empty { color: var(--muted); }

/* Single column by default — 330px min tracks used to overflow small phones. */
.menu-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 10px; }

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, background 0.2s ease;
}

@media (hover: hover) {
  .menu-item:hover { border-color: rgba(245, 165, 36, 0.34); background: var(--surface-2); }
}

.mi-text { flex: 1; min-width: 0; }
.mi-text h4 { font-size: 1rem; margin: 0 0 3px; }
.mi-text p { margin: 0; color: var(--muted); font-size: 0.85rem; }

.mi-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 2px;
}

.menu-cta {
  margin-top: 28px;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px dashed var(--line-2);
  background: rgba(245, 165, 36, 0.05);
  display: grid;
  gap: 16px;
}

.menu-cta h3 { font-size: 1.1rem; margin-bottom: 4px; }
.menu-cta p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* ------------------------------------------------------------ 12. GALLERY */

/* Two-up on phones: the two wide tiles span the full row, the four squares
   fill a tidy 2x2 underneath. Becomes a 4-up grid at 760px. */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }

.g-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  background: var(--surface);
}

.g-tile.g-wide { grid-column: span 2; aspect-ratio: 3 / 2; }

.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.g-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: opacity 0.35s ease;
}

@media (hover: hover) {
  .g-tile:hover img { transform: scale(1.06); }
  .g-tile:hover::after { opacity: 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 8, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 64px 12px;
}

.lightbox.is-open { display: flex; animation: fade 0.25s ease; }

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-2);
  color: var(--text);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.05rem;
}

.lb-close { top: 12px; right: 12px; }
.lb-prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 6px; top: 50%; transform: translateY(-50%); }

@media (hover: hover) {
  .lb-close:hover, .lb-nav:hover { background: var(--accent); color: #1a1206; border-color: transparent; }
}

/* -------------------------------------------------- 13. VISIT / CONTACT */

.visit { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }

.visit-grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }

.visit-col { display: grid; gap: 14px; min-width: 0; }

.contact-list { display: grid; gap: 9px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.cr-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex: none;
}

.cr-txt { display: flex; flex-direction: column; min-width: 0; }
.cr-txt em { font-style: normal; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.11em; color: var(--muted-2); }
.cr-txt strong { font-size: 0.93rem; font-weight: 600; overflow-wrap: anywhere; }

@media (hover: hover) {
  .contact-row:hover { transform: translateX(4px); border-color: rgba(245, 165, 36, 0.4); }
}

.hours-card, .social-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.hours-card h3, .social-card h3 {
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hours-card h3 .ico { color: var(--accent); }

.hours-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.87rem;
  color: var(--muted);
}

.hours-list li.is-today { background: var(--accent-soft); color: var(--text); }
.hours-list li.is-today strong { color: var(--accent); }
.hours-list strong { font-weight: 600; }

.social-row { display: flex; flex-wrap: wrap; gap: 9px; }

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  color: var(--muted);
  transition: all 0.2s ease;
}

.social-btn .ico { width: 20px; height: 20px; }

@media (hover: hover) {
  .social-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1a1206;
    border-color: transparent;
    transform: translateY(-3px);
  }
}

.social-empty { color: var(--muted-2); font-size: 0.85rem; margin: 0; }

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.map-card iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}

.map-card .btn {
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  width: 100%;
}

.order-form {
  padding: 20px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 13px;
}

.order-form h3 { font-size: 1.06rem; margin-bottom: 0; }
.form-hint { color: var(--muted); font-size: 0.84rem; margin: 0; }

.field { display: grid; gap: 6px; }
.field span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-family: var(--font-body);
  /* 16px prevents iOS Safari from zooming the page when a field is focused. */
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea { resize: vertical; min-height: 104px; }

.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field-2 { display: grid; grid-template-columns: 1fr; gap: 13px; }

/* ---------------------------------------------------------- 14. FOOTER */

.site-footer { background: #060608; border-top: 1px solid var(--line); padding-top: 42px; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 26px; padding-bottom: 34px; }

.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 0.89rem; margin-bottom: 5px; }
.footer-loc { color: var(--muted-2) !important; font-size: 0.85rem !important; }

.footer-col { display: flex; flex-direction: column; gap: 4px; }
.footer-col h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-2); margin-bottom: 6px; }
.footer-col a { color: var(--muted); font-size: 0.91rem; width: fit-content; padding-block: 4px; }
.footer-col .social-row { margin-top: 4px; }

@media (hover: hover) {
  .footer-col a:hover { color: var(--accent); }
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0 20px;
  display: grid;
  gap: 6px;
}

.footer-bottom p { margin: 0; color: var(--muted-2); font-size: 0.81rem; }

/* ------------------------------------------------------- FLOATING UI */

/* The bottom action bar is the primary contact surface on phones, so body
   already reserves padding for it (see 2. BASE). It is removed at 640px. */
.mobile-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 7px 8px calc(7px + env(safe-area-inset-bottom, 0px));
}

.mb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  padding: 6px 4px;
  border-radius: 11px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.mb-btn .ico { width: 19px; height: 19px; }
.mb-btn.mb-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1a1206; }

.fab {
  position: fixed;
  right: 16px;
  bottom: calc(var(--bar-h) + 14px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #06301a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.36);
  transition: transform 0.2s ease;
}

.fab svg { width: 26px; height: 26px; }

.to-top {
  position: fixed;
  right: 18px;
  bottom: calc(var(--bar-h) + 74px + env(safe-area-inset-bottom, 0px));
  z-index: 89;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}

.to-top.is-visible { opacity: 1; visibility: visible; }

@media (hover: hover) {
  .fab:hover { transform: scale(1.08) translateY(-2px); }
  .to-top:hover { background: var(--accent); color: #1a1206; border-color: transparent; }
}

/* ------------------------------------------------------ 15. MOTION + PRINT */

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html.js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================================
   PROGRESSIVE ENHANCEMENT — screens larger than a phone
   ============================================================================ */

/* ---------------------------------------------------- 480px · large phones */

@media (min-width: 480px) {
  :root { --gutter: 20px; }

  .quick-grid { gap: 12px; }
  .gallery-grid { gap: 12px; }
  .field-2 { grid-template-columns: 1fr 1fr; }
  .hero-cta { grid-auto-flow: column; justify-content: start; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
}

/* --------------------------------------------------------- 560px · phablets */

@media (min-width: 560px) {
  .header-cta .btn-primary { padding: 12px 20px; min-height: 46px; width: auto; }
  .header-cta .cta-label { display: inline; }

  .quick-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .hl-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .menu-item { padding: 18px 20px; }
  .map-card iframe { height: 260px; }
  .order-form { padding: 24px 22px; }
  .draft-notice { font-size: 0.83rem; }
  .topbar { font-size: 0.82rem; }
}

/* --------------------------------- 640px · desktop chrome replaces the bar */

@media (min-width: 640px) {
  :root { --header-h: 72px; }

  body { padding-bottom: 0; }

  .mobile-bar { display: none; }

  .fab { bottom: 22px; right: 20px; }
  .to-top { bottom: 86px; right: 20px; }

  .section { padding: 74px 0; }
  .quick-section { margin-top: -34px; }

  .hero { min-height: 80vh; min-height: 80svh; }
  .hero-inner { padding: 56px 0 72px; }
  .hero-cta { gap: 12px; }
  .hero-sub { margin-bottom: 30px; }

  .section-head { margin-bottom: 34px; }
  .hl-grid { margin-top: 52px; }
  .social-btn { width: 46px; height: 46px; }
  .hours-card, .social-card { padding: 22px; }
  .site-footer { padding-top: 52px; }
}

/* ------------------------------------------------ 760px · tablets & more */

@media (min-width: 760px) {
  :root { --gutter: 22px; }

  .topbar-loc { display: inline-block; margin-left: auto; }

  .header-cta .btn-ghost { display: inline-flex; }

  .hero-bg { object-position: 70% center; }
  .hero-veil {
    background:
      linear-gradient(100deg, rgba(10, 10, 12, 0.97) 0%, rgba(10, 10, 12, 0.86) 38%, rgba(10, 10, 12, 0.35) 72%, rgba(10, 10, 12, 0.55) 100%),
      radial-gradient(120% 90% at 12% 40%, rgba(245, 165, 36, 0.12), transparent 60%);
  }
  .hero { min-height: 82vh; min-height: 82svh; }
  .hero-inner { padding: 74px 0 86px; }
  .hero-status { margin-bottom: 20px; }
  .hero-title { margin-bottom: 18px; }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .g-tile { border-radius: var(--radius); }
  .g-tile.g-wide { aspect-ratio: 2 / 1; }

  .menu-tabs {
    margin-inline: 0;
    padding-inline: 0;
    margin-bottom: 26px;
  }
  .menu-list { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 12px; }

  .menu-cta {
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
    padding: 26px 30px;
  }

  .visit-grid { gap: 22px; }
  .map-card iframe { height: 292px; }
  .contact-row { padding: 16px 18px; }
  .social-card, .hours-card { padding: 24px; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-col h4 { font-size: 0.78rem; }
  .about-facts { grid-template-columns: repeat(2, 1fr); }

  .lightbox { padding: 5vh 4vw; }
  .lb-close { top: 22px; right: 24px; }
  .lb-prev { left: 20px; }
  .lb-next { right: 20px; }
}

/* ------------------------------------------- 980px · laptops & inline nav */

@media (min-width: 980px) {
  :root { --gutter: 24px; }

  .header-inner { gap: 20px; }

  /* Nav leaves the drawer and sits inline.
     .is-open is matched too, so a drawer left open while the window is resized
     past this breakpoint cannot keep its drawer padding, border or max-height. */
  #primary-nav,
  #primary-nav.is-open {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-left: 14px;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
    max-height: none;
    overflow: visible;
    opacity: 1;
    transition: none;
  }

  #primary-nav a {
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.93rem;
  }

  #primary-nav a.is-current { background: var(--accent-soft); }

  .nav-toggle { display: none; }

  .section { padding: 96px 0; }
  .section-head { max-width: 700px; margin-bottom: 42px; }

  .about-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .about-media img { min-height: 380px; border-radius: 22px; }

  .hl-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 64px; }

  .visit-grid { grid-template-columns: 0.95fr 1.05fr; gap: 28px; }
  .visit-col { gap: 16px; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
  .site-footer { padding-top: 62px; }
  .footer-bottom { padding: 18px 0 24px; }

  .hero-inner { padding: 74px 0 96px; }
  .quick-section { margin-top: -46px; }
}

/* ----------------------------------------------- 1200px · large desktops */

@media (min-width: 1200px) {
  .hero-title { letter-spacing: -0.03em; }
  .quick-grid { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 14px; }
  .menu-item { padding: 18px 20px; }
}

/* ----------------------------------------------------------------- PRINT */

@media print {
  .topbar, #site-header, .draft-notice, .fab, .to-top, .mobile-bar,
  .lightbox, .menu-cta, .map-card, .order-form, .gallery-grid { display: none !important; }

  body { background: #fff; color: #000; padding: 0; }
  .hero { min-height: auto; }
  .hero-bg, .hero-veil { display: none; }
  .hero-title, .hero-sub, .grad { color: #000 !important; -webkit-text-fill-color: #000; }
  .section { padding: 18px 0; }
  html.js .reveal { opacity: 1; transform: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}

/* ============================================================================
   16. DEALS, TOPPINGS & VARIANT PRICES
   Added when the real menu card was transcribed. Still mobile-first: the base
   rules below describe a small phone, and min-width queries widen them.
   ============================================================================ */

/* ------------------------------------------------ hero badges (status+promo) */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-badges .hero-status { margin-bottom: 0; }

/* .hero-status sets display:inline-flex, which would beat the browser's own
   [hidden] rule and leave an empty pill on screen. This restores hiding. */
.hero-status[hidden] { display: none; }

.hero-status.is-promo {
  color: #ffe0a8;
  border-color: rgba(245, 165, 36, 0.45);
  background: rgba(245, 165, 36, 0.14);
}

/* --------------------------------------------- multi-price menu rows (sizes) */

.menu-item.has-variants {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.mi-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mi-variant {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 82px;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.mi-variant em {
  font-style: normal;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

.mi-variant strong {
  font-family: var(--font-display);
  font-size: 0.94rem;
  color: var(--accent);
}

/* --------------------------------------------------------- extra toppings */

.toppings-card {
  margin-top: 26px;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.toppings-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 14px;
}

.toppings-card h3 .ico { color: var(--accent); }

.toppings-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }

.topping-row {
  display: grid;
  gap: 9px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.topping-row:first-child { border-top: 0; padding-top: 0; }
.topping-name { font-weight: 600; font-size: 0.94rem; }

/* ------------------------------------------------------------- deal cards */

.deals-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
}

.deals-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.deal-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.deal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-2);
}

.deal-no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.deal-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.24rem;
  color: var(--accent);
  white-space: nowrap;
}

.deal-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; flex: 1; }

.deal-list li {
  position: relative;
  padding-left: 19px;
  font-size: 0.92rem;
  color: #cfccd4;
}

.deal-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

@media (hover: hover) {
  .deal-card:hover { transform: translateY(-4px); border-color: rgba(245, 165, 36, 0.4); }
}

/* ------------------------------------------------ wider screens for the above */

@media (min-width: 560px) {
  .deals-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .topping-row { grid-template-columns: 1fr auto; align-items: center; gap: 14px; }
  .topping-row .mi-variants { justify-content: flex-end; }
  .toppings-card { margin-top: 32px; padding: 24px 22px; }
}

@media (min-width: 980px) {
  .deals-grid { grid-template-columns: repeat(4, 1fr); }
  .toppings-card { margin-top: 40px; }
}

/* ============================================================================
   17. SHORT VIEWPORTS — phones held in landscape
   Once the browser chrome collapses, a landscape phone leaves roughly 300px of
   usable height. A tall hero plus 54–96px of section padding then eats the whole
   screen. Tighten the vertical rhythm and keep the hero buttons on one row.
   This is a height query, not a width one — the mobile-first rules are untouched.
   ============================================================================ */

@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-inner { padding: 26px 0 40px; max-width: 660px; }
  .hero-title { font-size: clamp(1.55rem, 4.4vw, 2.25rem); }
  .hero-sub { margin-bottom: 20px; }
  .hero-cta { grid-auto-flow: column; justify-content: start; }
  .hero-cta .btn { width: auto; }
  .section { padding: 42px 0; }
  .section-head { margin-bottom: 22px; }
}
