/* ════════════════════════════════════════════════
   CHILLERS Pforzheim — California High-Ticket Theme
   ════════════════════════════════════════════════ */

:root {
  --ink: #06080f;
  --ink-2: #0b1020;
  --ink-3: #11182c;
  --cream: #f6efe3;
  --sand: #cdbf9f;
  --coral: #ff5a3c;
  --sunset: #ff8a4c;
  --gold: #f2b34c;
  --teal: #2dd4c0;
  --grad: linear-gradient(120deg, var(--coral), var(--sunset) 50%, var(--gold));
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Caveat', cursive;
  --nav-h: 76px;
  --radius: 22px;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--coral); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── grain ── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9000;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) } 20% { transform: translate(-3%,2%) }
  40% { transform: translate(2%,-3%) } 60% { transform: translate(-2%,-2%) }
  80% { transform: translate(3%,3%) }
}

/* ── custom cursor ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 18px; height: 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, background .25s, opacity .3s;
  opacity: 0;
  mix-blend-mode: difference;
}
.cursor.active { width: 52px; height: 52px; background: rgba(242,179,76,.15); }
@media (pointer: coarse) { .cursor { display: none; } }

/* ── preloader ── */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity .8s ease, visibility .8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-sun {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 60px rgba(255,138,76,.6);
  animation: sunrise 1.6s ease-in-out infinite alternate;
}
@keyframes sunrise { from { transform: translateY(10px) scale(.92); } to { transform: translateY(-10px) scale(1.05); } }
.preloader-text {
  font-size: 12px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--sand); animation: pulse 1.6s ease infinite;
}
@keyframes pulse { 0%,100% { opacity:.4 } 50% { opacity:1 } }

/* ════════ NAV ════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,8,15,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(246,239,227,.08);
}
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: clamp(18px, 2.5vw, 36px); }
.nav-links a {
  font-size: 14px; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--cream);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.65,0,.35,1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 16px; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1102;
}
.burger span {
  width: 26px; height: 2px; background: var(--cream);
  transition: transform .35s, opacity .25s; border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(6,8,15,.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px clamp(28px,8vw,64px) 48px;
  opacity: 0; visibility: hidden; transition: opacity .45s, visibility .45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: clamp(32px, 9vw, 48px);
  font-weight: 600; padding: 6px 0;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: calc(var(--i) * 60ms);
}
.mobile-menu nav a.btn { font-family: var(--font-body); font-size: 16px; margin-top: 22px; align-self: flex-start; }
.mobile-menu.open nav a { opacity: 1; transform: none; }
.mobile-menu-footer { margin-top: auto; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--sand); }
.mobile-menu-footer .socials { display: flex; gap: 20px; }
.mobile-menu-footer .socials a { border-bottom: 1px solid rgba(246,239,227,.25); }

/* ════════ BUTTONS ════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  letter-spacing: .03em; cursor: pointer; border: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, background .3s, color .3s;
  will-change: transform;
}
.btn-primary {
  background: var(--grad); color: #1a0d06;
  box-shadow: 0 8px 28px rgba(255,90,60,.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 38px rgba(255,90,60,.5); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(246,239,227,.3);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-fire {
  background: linear-gradient(120deg, #ff2d1a, #ff7a1a); color: #fff;
  box-shadow: 0 8px 30px rgba(255,45,26,.45);
}
.btn-fire:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 44px rgba(255,45,26,.6); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 17px 38px; font-size: 16px; }

/* ════════ LAYOUT / TYPO ════════ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section { padding: clamp(80px, 12vh, 150px) 0; position: relative; }

.eyebrow {
  font-size: 12px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }
.eyebrow.fire { color: #ff5a3c; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 700; line-height: 1.12;
  margin-bottom: 26px; letter-spacing: -.01em;
}
h2 em {
  font-style: italic; font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
h2.center, p.center { text-align: center; }
p.lead { max-width: 640px; margin: 0 auto 14px; color: var(--sand); font-size: 17px; }
.center { text-align: center; }
.muted { color: var(--sand); opacity: .8; }
.small { font-size: 13px; }

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}

/* reveal default state (gsap animates in) */
[data-reveal] { opacity: 0; transform: translateY(40px); }
.no-js [data-reveal], .reduced-motion [data-reveal] { opacity: 1; transform: none; }

/* ════════ HERO ════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 30%;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; max-width: 1000px;
  margin-top: -4vh;
}
.hero-eyebrow {
  font-size: 13px; letter-spacing: .5em; text-transform: uppercase;
  color: rgba(246,239,227,.85); margin-bottom: 26px; font-weight: 500;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11.5vw, 148px);
  font-weight: 800; line-height: .98; letter-spacing: -.015em;
  text-shadow: 0 8px 60px rgba(0,0,0,.45);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(110%); }
.hero-title .accent {
  font-style: italic; font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 4px 30px rgba(255,122,60,.35));
}
.hero-sub {
  max-width: 560px; margin: 30px auto 0;
  font-size: clamp(16px, 2vw, 19px); color: rgba(246,239,227,.92);
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
[data-hero-fade] { opacity: 0; }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: rgba(246,239,227,.7);
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollline 2s ease infinite;
}
@keyframes scrollline { 0% { transform: scaleY(0); transform-origin: top } 50% { transform: scaleY(1); transform-origin: top } 51% { transform-origin: bottom } 100% { transform: scaleY(0); transform-origin: bottom } }

/* ════════ MARQUEE ════════ */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 22px 0;
  border-top: 1px solid rgba(246,239,227,.08);
  border-bottom: 1px solid rgba(246,239,227,.08);
  background: var(--ink-2);
  transform: rotate(-1deg) scale(1.02);
}
.marquee-track { display: inline-flex; align-items: center; gap: 42px; animation: marquee 28s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px); color: var(--cream); opacity: .9;
}
.marquee-track i { font-style: normal; color: var(--gold); font-size: 20px; }
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ════════ ABOUT ════════ */
.about { background: var(--ink); }
.stats { display: flex; gap: clamp(24px, 4vw, 56px); margin-top: 44px; flex-wrap: wrap; }
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px); font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat span { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--sand); line-height: 1.5; }

.about-media { position: relative; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.about-img:hover img { transform: scale(1.06); }
.about-img.main { aspect-ratio: 4/5; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.about-img.float {
  position: absolute; width: 46%; aspect-ratio: 1;
  bottom: -40px; left: -50px;
  border: 5px solid var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.about-badge {
  position: absolute; top: -28px; right: -16px;
  font-family: var(--font-script); font-size: 30px; line-height: 1.1;
  color: var(--gold); transform: rotate(8deg);
  text-shadow: 0 4px 24px rgba(242,179,76,.4);
}

/* ════════ COCKTAIL 3D ════════ */
.cocktail3d {
  background: radial-gradient(ellipse 80% 60% at 30% 50%, #1a1230 0%, var(--ink) 70%);
  overflow: hidden;
}
.split.reverse { grid-template-columns: 1fr 1fr; }
.cocktail-canvas-wrap { position: relative; aspect-ratio: 4/5; max-height: 640px; }
#cocktail-canvas { width: 100%; height: 100%; position: relative; z-index: 2; }
.cocktail-glow {
  position: absolute; inset: 12%;
  background: radial-gradient(circle, rgba(255,122,60,.22), transparent 65%);
  filter: blur(30px); z-index: 1;
  animation: glowpulse 4s ease-in-out infinite alternate;
}
@keyframes glowpulse { from { opacity: .6; transform: scale(.95) } to { opacity: 1; transform: scale(1.05) } }

.ticks { list-style: none; margin: 26px 0 34px; display: flex; flex-direction: column; gap: 14px; }
.ticks li { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.ticks li::before {
  content: '✓'; flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(242,179,76,.14); color: var(--gold);
  font-size: 13px; font-weight: 700;
  border: 1px solid rgba(242,179,76,.35);
}

/* ════════ DEALS ════════ */
.deals { background: var(--ink-2); }
.deal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; margin-top: 60px;
}
.deal-card {
  position: relative;
  background: linear-gradient(160deg, rgba(246,239,227,.05), rgba(246,239,227,.015));
  border: 1px solid rgba(246,239,227,.09);
  border-radius: var(--radius);
  padding: 36px 30px 32px;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s, box-shadow .4s;
  transform-style: preserve-3d;
  overflow: hidden;
}
.deal-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(255,138,76,.12), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.deal-card:hover { border-color: rgba(242,179,76,.4); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.deal-card:hover::before { opacity: 1; }
.deal-icon { font-size: 34px; margin-bottom: 18px; }
.deal-card h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  margin-bottom: 10px;
}
.deal-card p { color: var(--sand); font-size: 15px; }
.deal-tag {
  display: inline-block; margin-top: 18px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--gold);
  padding: 6px 14px; border-radius: 99px;
  border: 1px solid rgba(242,179,76,.35);
}

/* ════════ CHALLENGE ════════ */
.challenge {
  position: relative; overflow: hidden;
  background: #0d0608;
  text-align: center;
}
.challenge-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 110%, rgba(255,45,26,.32), transparent 65%),
    radial-gradient(ellipse 45% 35% at 80% -10%, rgba(255,122,26,.14), transparent 60%);
  animation: firepulse 3.6s ease-in-out infinite alternate;
}
@keyframes firepulse { from { opacity: .7 } to { opacity: 1 } }
.challenge-inner { position: relative; z-index: 2; max-width: 720px; }
.challenge p { color: #e8c9b8; }
.challenge-steps { display: flex; justify-content: center; gap: clamp(28px,6vw,72px); margin: 44px 0; }
.cstep strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 72px); font-weight: 800;
  background: linear-gradient(180deg, #ffb38a, #ff2d1a);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cstep span { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: #c9988a; }

/* ════════ MENU ════════ */
.menu { background: var(--ink); }
.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px; margin-top: 60px;
}
.menu-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/11; display: block;
  transform-style: preserve-3d;
}
.menu-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.menu-card:hover img { transform: scale(1.07); }
.menu-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,8,15,.92) 8%, rgba(6,8,15,.25) 55%, rgba(6,8,15,.1));
  transition: background .4s;
}
.menu-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 30px 32px;
}
.menu-card-body h3 { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.menu-card-body p { color: var(--sand); font-size: 15px; margin: 4px 0 14px; }
.menu-link {
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
}
.menu-link i { font-style: normal; transition: transform .3s; }
.menu-card:hover .menu-link i { transform: translateX(6px); }
.menu-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }

/* ════════ GALLERY ════════ */
.gallery { background: var(--ink-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(140px, 22vw, 290px);
  gap: 14px;
  padding: 60px clamp(14px, 2.5vw, 40px) 0;
  max-width: 1500px; margin: 0 auto;
}
.gallery-grid figure { border-radius: 16px; overflow: hidden; position: relative; }
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s;
  filter: saturate(.92);
}
.gallery-grid figure:hover img { transform: scale(1.08); filter: saturate(1.1); }

/* ════════ BIG CTA ════════ */
.bigcta {
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(255,90,60,.18), transparent 60%),
    var(--ink);
}
.bigcta-script {
  font-family: var(--font-script); font-size: clamp(28px, 4vw, 42px);
  color: var(--gold); margin-bottom: 14px; transform: rotate(-2deg);
}

/* ════════ CONTACT ════════ */
.contact { background: var(--ink-2); }
.contact-block { margin-top: 30px; }
.contact-block h4 {
  font-size: 12px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 600;
}
.contact-block a { border-bottom: 1px solid rgba(246,239,227,.25); transition: color .3s, border-color .3s; }
.contact-block a:hover { color: var(--gold); border-color: var(--gold); }
.hours-grid {
  display: grid; grid-template-columns: auto auto; gap: 8px 36px;
  width: fit-content; font-size: 16px;
}
.hours-grid span:nth-child(odd) { color: var(--sand); }

.map-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 460px; height: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(246,239,227,.1);
}
#map { position: absolute; inset: 0; background: var(--ink-3); }
.map-route { position: absolute; bottom: 18px; left: 18px; z-index: 5; }

/* ════════ FOOTER ════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(246,239,227,.08);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 56px;
}
.footer-brand img { height: 48px; margin-bottom: 18px; }
.footer-brand p { color: var(--sand); font-size: 15px; }
.footer-col h5 {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.footer-col a {
  display: block; padding: 5px 0; color: var(--sand);
  font-size: 15px; transition: color .3s, transform .3s;
}
.footer-col a:hover { color: var(--cream); transform: translateX(4px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(246,239,227,.07);
  font-size: 13px; color: var(--sand);
}
.footer-bottom a { margin-left: 22px; transition: color .3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1024px) {
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .burger { display: flex; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 56px; }
  .cocktail-canvas-wrap { max-width: 420px; margin: 0 auto; aspect-ratio: 1; order: -1; }
  .about-img.float { left: -8px; bottom: -30px; }
  .about-badge { right: 4px; }
  .menu-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 380px; }
}

@media (max-width: 560px) {
  .hero-sub { margin-top: 42px; }
  .hero-content { margin-top: -2vh; }
  .deal-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 38vw; }
  .stats { gap: 24px; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .hours-grid { gap: 6px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ════════ REDUCED MOTION ════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], [data-hero-fade] { opacity: 1 !important; transform: none !important; }
  .hero-title .line > span { transform: none; }
}
