/* ============================================================
   DIS RESTAURANT — 3D Animated Preview (by Dis Branding)
   ============================================================ */

@font-face {
  font-family: 'Montserrat'; font-style: normal; font-weight: 400;
  font-display: swap;
  src: url('fonts/montserrat-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat'; font-style: normal; font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat'; font-style: normal; font-weight: 700;
  font-display: swap;
  src: url('fonts/montserrat-latin-700-normal.woff2') format('woff2');
}

:root {
  --gold: #E5A82E;
  --gold-light: #FFC94D;
  --gold-dark: #B8841F;
  --amber: #FF8C42;
  --black: #050403;
  --black-2: #0d0b08;
  --black-3: #14110c;
  --black-4: #1c1812;
  --gray: #8a8378;
  --gray-light: #b5ada0;
  --gold-grad: linear-gradient(100deg, var(--gold-light), var(--gold) 45%, var(--amber));
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--black);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #000; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease-out), visibility .8s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-cloche {
  width: 64px; height: 64px; margin: 0 auto 20px;
  filter: drop-shadow(0 0 20px rgba(229, 168, 46, .7));
  animation: clochePulse 1.5s ease-in-out infinite;
}
@keyframes clochePulse {
  50% { transform: scale(1.12) rotate(-4deg); filter: drop-shadow(0 0 34px rgba(255, 201, 77, .9)); }
}
.loader-text {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .35em; color: var(--gold);
}
.loader-bar {
  width: 180px; height: 2px; margin: 18px auto 0;
  background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: var(--gold-grad);
  animation: loadFill 1.6s var(--ease-out) forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ---------- Canvas & Noise ---------- */
#scene { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; }
/* Graceful fallback when WebGL is unavailable/blocked: a warm static
   gradient stands in for the 3D scene instead of a blank canvas. */
body.no-3d #scene { display: none; }
body.no-3d {
  background:
    radial-gradient(ellipse 60% 45% at 50% 28%, rgba(229, 168, 46, .22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(255, 140, 66, .14), transparent 60%),
    var(--black);
}
.noise {
  position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

main, footer, nav, .mobile-menu { position: relative; z-index: 3; }

/* ---------- Preview Badge ---------- */
.preview-badge {
  position: fixed; bottom: 18px; left: 18px; z-index: 200;
  font-size: .68rem; letter-spacing: .08em;
  color: var(--gray-light);
  background: rgba(13, 11, 8, .85);
  border: 1px solid rgba(229, 168, 46, .35);
  border-radius: 100px;
  padding: 8px 16px;
  backdrop-filter: blur(10px);
  transition: border-color .3s, color .3s, box-shadow .3s;
}
.preview-badge strong { color: var(--gold); }
.preview-badge:hover {
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 24px rgba(229, 168, 46, .3);
}

/* ---------- Typography Helpers ---------- */
.gold-grad {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.glow-gold { text-shadow: 0 0 50px rgba(229, 168, 46, .45); }

/* ---------- Navigation ---------- */
nav {
  background: transparent;
  padding: 16px clamp(20px, 5vw, 60px);
  display: flex; align-items: center; justify-content: space-between;
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(5, 4, 3, .8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 168, 46, .4);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg {
  width: 40px; height: 40px;
  filter: drop-shadow(0 0 10px rgba(229, 168, 46, .55));
}
.nav-brand {
  font-size: 18px; font-weight: 700; letter-spacing: 4px; color: var(--gold);
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2px; color: var(--gray-light);
  font-weight: 500; position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--gold-grad);
  transition: width .35s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold-grad);
  color: #000;
  padding: 10px 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  border: none; border-radius: 100px;
  box-shadow: 0 4px 24px rgba(229, 168, 46, .35);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 34px rgba(255, 201, 77, .5);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(5, 4, 3, .96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--black-4);
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 24px;
  font-size: 12px; letter-spacing: 2px; color: var(--gray-light);
  border-bottom: 1px solid var(--black-3);
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 24px 160px;
  position: relative;
}
.hero-kicker {
  font-size: 11px; letter-spacing: 5px; color: var(--gold);
  margin-bottom: 24px; font-weight: 500;
}
.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold-grad);
  margin: 0 auto 32px;
  box-shadow: 0 0 12px rgba(229, 168, 46, .8);
}
.hero-title {
  font-size: clamp(30px, 5.4vw, 62px);
  font-weight: 700; line-height: 1.12; letter-spacing: 2px;
  margin-bottom: 22px;
}
.hero-title .line { display: block; }
.word { display: inline-block; }
.hero-sub {
  font-size: 13px; color: var(--gray-light);
  letter-spacing: 3px; margin-bottom: 44px; font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .95), 0 2px 18px rgba(0, 0, 0, .85);
}
.hero-title { text-shadow: 0 2px 24px rgba(0, 0, 0, .6); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-grad);
  color: #000;
  padding: 15px 34px;
  font-size: 11px; letter-spacing: 3px; font-weight: 700;
  border: none; border-radius: 100px;
  box-shadow: 0 8px 36px rgba(229, 168, 46, .4);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 50px rgba(255, 201, 77, .55);
}
.btn-arrow { transition: transform .3s var(--ease-out); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-outline {
  background: rgba(255,255,255,.02);
  color: var(--gold);
  padding: 15px 34px;
  font-size: 11px; letter-spacing: 3px; font-weight: 700;
  border: 1px solid rgba(229, 168, 46, .55);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease-out), box-shadow .3s, background .3s;
}
.btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(229, 168, 46, .1);
  box-shadow: 0 0 30px rgba(229, 168, 46, .25);
}

.hero-scroll-hint {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  animation: floatY 3s ease-in-out infinite;
}
@keyframes floatY { 50% { transform: translateX(-50%) translateY(8px); } }
.mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(229, 168, 46, .4);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.mouse-wheel {
  width: 3px; height: 8px; border-radius: 3px;
  background: var(--gold);
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel { 50% { transform: translateY(9px); opacity: .2; } }
@media (max-height: 700px) { .hero-scroll-hint { display: none; } }

/* ---------- Highlights ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(229, 168, 46, .18);
  border-top: 1px solid rgba(229, 168, 46, .18);
  border-bottom: 1px solid rgba(229, 168, 46, .18);
}
.highlight-item {
  background: rgba(5, 4, 3, .82);
  backdrop-filter: blur(6px);
  padding: 36px 20px;
  text-align: center;
  transition: background .4s;
}
.highlight-item:hover { background: rgba(20, 17, 12, .9); }
a.highlight-item { display: block; color: inherit; text-decoration: none; cursor: pointer; }
a.highlight-item:hover { background: rgba(229, 168, 46, .1); }
.highlight-ext {
  display: inline-block; font-size: .75em; margin-left: 2px;
  color: var(--gold); opacity: .75;
  transition: transform .3s var(--ease-out), opacity .3s;
}
a.highlight-item:hover .highlight-ext { transform: translate(2px, -2px); opacity: 1; }
.highlight-icon {
  font-size: 1.8rem; margin-bottom: 12px;
  filter: drop-shadow(0 0 14px rgba(229, 168, 46, .5));
}
.highlight-title {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--gold);
}
.highlight-desc { font-size: 12px; color: var(--gray); }

/* ---------- Sections ---------- */
.section-kicker {
  font-size: 11px; letter-spacing: 5px; color: var(--gold);
  text-align: center; margin-bottom: 14px; font-weight: 500;
}
.section-title {
  font-size: clamp(26px, 4.4vw, 44px);
  font-weight: 700; letter-spacing: 2px;
  text-align: center; margin-bottom: 40px;
}

/* ---------- Menu ---------- */
.menu-section {
  padding: clamp(80px, 12vh, 130px) clamp(20px, 5vw, 60px);
  max-width: 1280px; margin: 0 auto;
}
.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 44px;
}
.menu-tab {
  background: rgba(255,255,255,.03);
  color: var(--gray-light);
  border: 1px solid rgba(229, 168, 46, .25);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  backdrop-filter: blur(6px);
  transition: all .3s var(--ease-out);
}
.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.menu-tab.active {
  background: var(--gold-grad);
  color: #000;
  border-color: transparent;
  box-shadow: 0 6px 26px rgba(229, 168, 46, .4);
}
.menu-panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.menu-panel.active { display: grid; animation: panelIn .6s var(--ease-out); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.menu-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  border: 1px solid rgba(229, 168, 46, .18);
  border-radius: 16px;
  padding: 24px 22px;
  backdrop-filter: blur(10px);
  transition: border-color .35s, transform .35s var(--ease-out), box-shadow .35s;
}
.menu-card:hover {
  border-color: rgba(229, 168, 46, .6);
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .5), 0 0 30px rgba(229, 168, 46, .12);
}
.menu-nr {
  font-size: 10px; letter-spacing: 2px; color: var(--gray);
  margin-bottom: 6px;
}
.menu-name {
  font-size: 15px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--gold-light); margin-bottom: 8px;
}
.menu-desc { font-size: 12.5px; color: var(--gray-light); min-height: 38px; }
.menu-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px;
}
.menu-price { font-size: 16px; font-weight: 700; color: #fff; }
.btn-order-sm {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(229, 168, 46, .45);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  transition: all .3s;
}
.btn-order-sm:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(229, 168, 46, .4);
}
.burger-panel-header {
  grid-column: 1 / -1;
  text-align: center;
  padding: 10px 0 4px;
}
.burger-badge {
  display: inline-block;
  font-size: 20px; font-weight: 700; letter-spacing: 6px;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 8px 24px;
  margin-bottom: 10px;
  box-shadow: 0 0 30px rgba(229, 168, 46, .25), inset 0 0 20px rgba(229, 168, 46, .08);
}
.burger-panel-header p {
  font-size: 11px; letter-spacing: 3px; color: var(--gray);
}
.menu-note {
  text-align: center; margin-top: 40px;
  font-size: 12px; color: var(--gray);
}
.menu-note a { color: var(--gold); border-bottom: 1px solid rgba(229, 168, 46, .4); }

/* ---------- About ---------- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(80px, 12vh, 130px) clamp(20px, 5vw, 60px);
  max-width: 1180px; margin: 0 auto;
}
.about-visual { display: flex; justify-content: center; }
.about-badge-wrap { text-align: center; }
.about-badge {
  width: 200px; height: 200px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(229, 168, 46, .25), inset 0 0 40px rgba(229, 168, 46, .08);
  animation: badgeSpinGlow 6s ease-in-out infinite;
}
@keyframes badgeSpinGlow {
  50% { box-shadow: 0 0 90px rgba(255, 201, 77, .4), inset 0 0 50px rgba(229, 168, 46, .14); }
}
.about-badge::before {
  content: '';
  position: absolute; inset: -14px;
  border: 1px dashed rgba(229, 168, 46, .4);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.about-badge span {
  font-size: 44px; font-weight: 700; letter-spacing: 8px; color: var(--gold);
}
.about-since {
  margin-top: 22px;
  font-size: 10px; letter-spacing: 4px; color: var(--gray);
}
.about-text { color: var(--gray-light); font-size: 14.5px; margin-bottom: 18px; }
.about-divider {
  width: 60px; height: 1px;
  background: var(--gold-grad);
  margin: 26px 0;
}
.about-tags { font-size: 11px; letter-spacing: 3px; color: var(--gold); font-weight: 500; }
@media (max-width: 820px) {
  .about-section { grid-template-columns: 1fr; text-align: center; }
  .about-content .section-kicker, .about-content .section-title { text-align: center !important; }
  .about-divider { margin: 26px auto; }
}

/* ---------- Services ---------- */
.services-section {
  padding: clamp(70px, 10vh, 110px) clamp(20px, 5vw, 60px);
  max-width: 1080px; margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative; overflow: hidden;
  display: flex; gap: 20px; align-items: flex-start;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(229, 168, 46, .2);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color .4s;
}
.service-card:hover { border-color: rgba(229, 168, 46, .6); }
.card-glow {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(229, 168, 46, .16), transparent 45%);
  transition: opacity .4s;
}
.service-card:hover .card-glow { opacity: 1; }
.service-icon {
  font-size: 1.9rem;
  filter: drop-shadow(0 0 14px rgba(229, 168, 46, .5));
}
.service-title {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 8px;
}
.service-desc { font-size: 13px; color: var(--gray-light); }

/* ---------- Payment ---------- */
.payment-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(60px, 9vh, 100px) clamp(20px, 5vw, 60px);
  max-width: 1080px; margin: 0 auto;
}
.payment-section h3 {
  font-size: 14px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 20px;
}
.payment-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.payment-pill {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--gray-light);
  border: 1px solid rgba(229, 168, 46, .3);
  border-radius: 100px;
  padding: 8px 16px;
  background: rgba(255,255,255,.02);
  transition: all .3s;
}
.payment-pill:hover { border-color: var(--gold); color: var(--gold); }
.order-cta {
  background: linear-gradient(160deg, rgba(229, 168, 46, .12), rgba(229, 168, 46, .03));
  border: 1px solid rgba(229, 168, 46, .35);
  border-radius: 20px;
  padding: 30px 28px;
}
.order-cta p { font-size: 13px; color: var(--gray-light); margin-bottom: 20px; }
@media (max-width: 720px) { .payment-section { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: clamp(70px, 10vh, 110px) clamp(20px, 5vw, 60px);
  max-width: 1180px; margin: 0 auto;
}
.contact-block {
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border: 1px solid rgba(229, 168, 46, .2);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
}
.contact-block h3 {
  font-size: 13px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 22px;
}
.contact-line {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--gray-light);
  margin-bottom: 16px;
}
.contact-line a { color: #fff; transition: color .3s; }
.contact-line a:hover { color: var(--gold); }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hours-day { color: var(--gray-light); }
.hours-time { color: #fff; font-weight: 500; }
.hours-closed { color: var(--amber); font-weight: 500; }
.map-link {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
  border: 1px dashed rgba(229, 168, 46, .5);
  border-radius: 16px;
  padding: 34px 20px;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--gold);
  transition: background .3s, box-shadow .3s;
}
.map-link:hover {
  background: rgba(229, 168, 46, .07);
  box-shadow: 0 0 30px rgba(229, 168, 46, .2);
}
.map-pin { font-size: 1.6rem; filter: drop-shadow(0 0 12px rgba(229, 168, 46, .6)); }
.map-link small { color: var(--gray); font-weight: 400; letter-spacing: 1px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(229, 168, 46, .25);
  background: rgba(5, 4, 3, .85);
  backdrop-filter: blur(8px);
  padding: 44px clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-logo {
  grid-column: 1 / -1;
  font-size: 15px; font-weight: 700; letter-spacing: 5px; color: var(--gold);
}
.footer-info p { font-size: 12px; color: var(--gray); }
.footer-copy { margin-top: 8px; font-size: 10px !important; color: #575146 !important; }
.footer-copy a { color: #6b6455; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(229, 168, 46, .35);
  border-radius: 50%;
  font-size: 12px; font-weight: 700; color: var(--gold);
  transition: all .3s;
}
.social-btn:hover {
  background: var(--gold); color: #000;
  box-shadow: 0 0 24px rgba(229, 168, 46, .45);
  transform: translateY(-3px);
}

/* ---------- Back to top ---------- */
#back-top {
  position: fixed; bottom: 20px; right: 20px; z-index: 150;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(229, 168, 46, .5);
  background: rgba(13, 11, 8, .85);
  color: var(--gold);
  font-size: 18px;
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .4s var(--ease-out);
}
#back-top.show { opacity: 1; visibility: visible; transform: none; }
#back-top:hover {
  background: var(--gold); color: #000;
  box-shadow: 0 0 30px rgba(229, 168, 46, .5);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotate(2deg);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
body.loaded .reveal-word { opacity: 1; transform: none; }
body.loaded .hero .reveal { opacity: 1; transform: none; }
.line:nth-child(2) .reveal-word { transition-delay: .2s; }
.hero-sub { transition-delay: .4s; }
.hero-buttons { transition-delay: .55s; }

/* ---------- Order Toast (pickup confirmation) ---------- */
#order-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 600;
  background: linear-gradient(160deg, #14110c, #0d0b08);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 16px 28px;
  text-align: center;
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  color: var(--gold);
  box-shadow: 0 12px 44px rgba(0, 0, 0, .6), 0 0 30px rgba(229, 168, 46, .25);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility .35s;
}
#order-toast small {
  display: block; margin-top: 4px;
  font-size: 11px; font-weight: 500; letter-spacing: 1px;
  color: var(--gray-light);
}
#order-toast.show {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Warenkorb ---------- */
#cart-fab {
  position: fixed; bottom: 20px; right: 78px; z-index: 160;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border: none; border-radius: 100px;
  background: var(--gold-grad);
  color: #000; font-size: 16px; font-weight: 700;
  box-shadow: 0 8px 30px rgba(229, 168, 46, .45);
  cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
#cart-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(255, 201, 77, .55); }
#cart-fab.bump { animation: cartBump .4s var(--ease-out); }
@keyframes cartBump { 40% { transform: scale(1.18); } }
#cart-count {
  min-width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: #000; color: var(--gold);
  border-radius: 100px;
  font-size: 12px; font-weight: 700; padding: 0 6px;
  font-variant-numeric: tabular-nums;
}

.cart-item {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: 3px; }
.cart-item-details { font-size: 11px; color: var(--gray); line-height: 1.5; }
.cart-item-price { font-size: 13px; font-weight: 700; white-space: nowrap; }
.cart-item-remove {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 100, 80, .4);
  background: none; color: #ff8a70;
  font-size: 12px; cursor: pointer;
  transition: background .3s;
}
.cart-item-remove:hover { background: rgba(255, 100, 80, .12); }
.cart-empty {
  text-align: center; color: var(--gray);
  font-size: 13px; padding: 26px 10px;
  border: 1px dashed rgba(229, 168, 46, .3); border-radius: 14px;
}
.cart-hint {
  font-size: 11px; color: var(--gray);
  letter-spacing: .5px; margin-bottom: 10px;
}
.cart-select {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 22px;
  border-radius: 14px;
  border: 1px solid rgba(229, 168, 46, .4);
  background: #14110c;
  color: #fff;
  font-family: inherit; font-size: 14px;
  cursor: pointer;
}
.cart-select:focus { outline: 2px solid rgba(229, 168, 46, .5); }
.cart-input {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 6px;
  border-radius: 14px;
  border: 1px solid rgba(229, 168, 46, .4);
  background: #14110c;
  color: #fff;
  font-family: inherit; font-size: 14px;
}
.cart-input::placeholder { color: rgba(255, 255, 255, .35); }
.cart-input:focus { outline: 2px solid rgba(229, 168, 46, .5); }
.cart-input.invalid { border-color: #e0563e; }
.cart-error {
  display: none;
  font-size: 12px; color: #f0876e;
  letter-spacing: .3px; margin: 0 0 18px;
}
.cart-error.show { display: block; }

/* ---------- Extras Modal (Mayo/Ketchup) ---------- */
.extras-overlay {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(5, 4, 3, .78);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease-out), visibility .3s;
}
.extras-overlay.open { opacity: 1; visibility: visible; }
.extras-modal {
  position: relative;
  width: 100%; max-width: 400px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(160deg, #14110c, #0d0b08);
  border: 1px solid rgba(229, 168, 46, .35);
  border-radius: 24px;
  padding: 40px 32px 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
  transform: translateY(24px) scale(.97);
  opacity: 0;
  transition: transform .35s var(--ease-out), opacity .35s var(--ease-out);
}
.extras-overlay.open .extras-modal { transform: translateY(0) scale(1); opacity: 1; }
.extras-modal.modal-doc {
  max-width: 900px;
  width: 100%;
  padding: 32px;
}
.modal-doc-frame {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(229, 168, 46, .25);
  background: rgba(255, 255, 255, .03);
}
.modal-doc-frame iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 640px) {
  .extras-modal.modal-doc { padding: 24px 18px; }
  .modal-doc-frame { aspect-ratio: 3 / 4; }
}
.extras-close {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--gray-light); font-size: 14px;
  transition: all .3s;
}
.extras-close:hover { background: rgba(229, 168, 46, .15); color: var(--gold); border-color: rgba(229, 168, 46, .4); }
.extras-eyebrow {
  font-size: 10px; letter-spacing: 3px; color: var(--gold);
  font-weight: 700; margin-bottom: 10px;
}
.extras-title {
  font-size: 1.3rem; font-weight: 700; letter-spacing: 1px;
  margin-bottom: 26px;
}
.extras-conditional { display: none; }
.extras-conditional.visible { display: block; }
.extras-group-label {
  font-size: 10px; letter-spacing: 2px; color: var(--gray);
  font-weight: 700; margin-bottom: 10px;
}
.extras-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.extras-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  cursor: pointer;
  transition: border-color .3s, background .3s;
  font-size: 14px; color: var(--gray-light);
}
.extras-option:hover { border-color: rgba(229, 168, 46, .4); }
.extras-option-left { display: flex; align-items: center; gap: 12px; }
.extras-option-text { display: flex; flex-direction: column; gap: 2px; }
.extras-option-name { font-weight: 500; }
.extras-option-desc { font-size: 11px; color: var(--gray); font-weight: 400; }
.extras-checkbox {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}
.extras-option-price { color: var(--gold); font-weight: 700; font-size: 13px; }
.extras-total {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px; letter-spacing: 1px; color: var(--gray-light);
  text-transform: uppercase;
}
#extras-total-price {
  font-size: 1.3rem; color: #fff; letter-spacing: 0; text-transform: none;
  font-weight: 700;
}
.extras-confirm { width: 100%; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
