:root {
  --night: #07080b;
  --night-2: #11131a;
  --paper: #fde6ea;
  --surface: #ffffff;
  --surface-2: #fff1f4;
  --ink: #1d1320;
  --muted: #6f5966;
  --line: #f0cfd6;
  --red: #f15a24;
  --red-dark: #d94a13;
  --copper: #f47d45;
  --saffron: #ffb04a;
  --gold: #ffd57a;
  --cream: #fff7f9;
  --hero-bg: linear-gradient(180deg, #040507 0%, #0a0d12 100%);
  --body-bg: linear-gradient(180deg, #fee7ea 0, #ffecef 520px, var(--paper) 1040px), var(--paper);
  --topbar-bg: rgba(4, 5, 7, 0.86);
  --hero-ink: #fff8f4;
  --hero-muted: rgba(255, 248, 244, 0.76);
  --card-bg: rgba(255, 255, 255, 0.96);
  --soft-band: linear-gradient(180deg, rgba(255, 241, 244, 0.96), rgba(255, 230, 235, 0.96));
  --shadow: 0 22px 60px rgba(17, 19, 26, 0.1);
  --shadow-strong: 0 30px 80px rgba(17, 19, 26, 0.22);
  --glow: 0 0 0 1px rgba(255, 183, 123, 0.35), 0 20px 45px rgba(241, 90, 36, 0.18);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

body[data-theme="dark"] {
  --night: #040507;
  --night-2: #0c0d12;
  --paper: #11151c;
  --surface: #181c24;
  --surface-2: #232633;
  --ink: #fff6f3;
  --muted: #d6b9be;
  --line: #3e3340;
  --red: #ff7a2b;
  --red-dark: #f15a24;
  --copper: #ff9b4d;
  --saffron: #ffd166;
  --gold: #ffdf85;
  --cream: #040507;
  --hero-bg: linear-gradient(180deg, #040507 0%, #0a0d12 100%);
  --body-bg: linear-gradient(180deg, #170f15 0, #22131a 520px, var(--paper) 1040px), var(--paper);
  --topbar-bg: rgba(4, 5, 7, 0.86);
  --hero-ink: #fff8f4;
  --hero-muted: rgba(255, 248, 244, 0.76);
  --card-bg: rgba(24, 28, 36, 0.96);
  --soft-band: linear-gradient(180deg, rgba(255, 241, 244, 0.96), rgba(255, 230, 235, 0.96));
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 32px 95px rgba(0, 0, 0, 0.46);
  --glow: 0 0 0 1px rgba(255, 183, 123, 0.28), 0 20px 45px rgba(241, 90, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--body-bg);
  color: var(--ink);
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0, transparent 720px);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient-ring {
  position: absolute;
  display: block;
  border: 1px solid rgba(93, 124, 87, 0.14);
  opacity: 0.75;
  transform: rotate(-14deg);
}

.ring-one {
  top: 96px;
  right: -140px;
  width: 560px;
  height: 220px;
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(170, 46, 35, 0.08);
}

.ring-two {
  top: 390px;
  left: -220px;
  width: 620px;
  height: 180px;
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(191, 63, 47, 0.08);
}

.ambient-sheen {
  position: absolute;
  top: -25%;
  left: -18%;
  width: 76vw;
  height: 118vh;
  background: linear-gradient(112deg, transparent 0%, rgba(248, 251, 245, 0.08) 38%, transparent 58%);
  transform: rotate(9deg);
  animation: atmosphere 9s var(--ease) infinite alternate;
}

@keyframes atmosphere {
  from { transform: translate3d(-3%, 0, 0) rotate(9deg); }
  to { transform: translate3d(5%, 2%, 0) rotate(9deg); }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: var(--topbar-bg);
  border-bottom: 1px solid rgba(93, 124, 87, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--hero-ink);
  font-weight: 900;
}

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-logo {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(242, 211, 124, 0.32);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 248, 239, 0.95), rgba(255, 255, 255, 0.55));
  box-shadow: 0 10px 26px rgba(170, 46, 35, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

nav {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

nav a {
  position: relative;
  border-radius: 8px;
  padding: 9px 12px;
  transition: color 180ms ease, background 180ms ease;
}

.theme-toggle {
  min-height: 38px;
  border: 1px solid rgba(242, 211, 124, 0.32);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--hero-ink);
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms var(--ease), background 180ms ease, box-shadow 180ms var(--ease);
}

.theme-toggle:hover {
  background: rgba(216, 166, 58, 0.18);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 226, 163, 0.34);
  border-radius: 8px;
  background: rgba(22, 15, 11, 0.72);
  color: #fff8ee;
  cursor: pointer;
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease;
}

.icon-button:hover {
  background: rgba(170, 46, 35, 0.86);
  box-shadow: var(--glow);
  transform: translateY(-3px) translateZ(18px);
}

nav a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover {
  background: rgba(93, 124, 87, 0.08);
  color: var(--ink);
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 7vw, 106px) clamp(18px, 6vw, 88px) clamp(34px, 5vw, 70px);
  background: var(--hero-bg);
  color: var(--hero-ink);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text {
  max-width: 690px;
  color: var(--hero-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.admin-actions,
.map-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sunday-strip {
  max-width: 660px;
  margin: 20px 0 24px;
  border: 1px solid rgba(93, 124, 87, 0.2);
  border-left: 5px solid var(--red);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(93, 124, 87, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--hero-ink);
  font-weight: 850;
  line-height: 1.4;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 950;
  transform: translateY(0);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 560ms var(--ease);
}

.button:hover {
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.button:hover::before {
  transform: translateX(120%);
}

.primary {
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  color: #fff;
}

.secondary {
  border-color: rgba(93, 124, 87, 0.18);
  background: rgba(93, 124, 87, 0.08);
  color: var(--hero-ink);
}

.ghost {
  border-color: rgba(93, 124, 87, 0.18);
  background: transparent;
  color: var(--hero-ink);
}

.whatsapp {
  background: linear-gradient(145deg, #7a9a72, #4d6947);
  color: #fff;
}

.disabled {
  pointer-events: none;
  opacity: 0.55;
}

.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  gap: 10px;
  margin-top: 28px;
}

.hero-metrics article {
  border: 1px solid rgba(93, 124, 87, 0.14);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics strong,
.hero-metrics span,
.trust-strip strong,
.trust-strip span {
  display: block;
}

.hero-metrics strong {
  font-size: clamp(22px, 3vw, 34px);
}

.hero-metrics span {
  margin-top: 3px;
  color: var(--hero-muted);
  font-weight: 800;
}

.hero-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  perspective: 1300px;
}

.photo-stage {
  position: relative;
  perspective: 1200px;
  transition: transform 180ms var(--ease);
}

.photo-stage::after {
  position: absolute;
  right: 7%;
  bottom: -18px;
  left: 7%;
  height: 34px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.32), transparent 68%);
  filter: blur(8px);
  transform: rotateX(72deg);
  pointer-events: none;
}

.hero-food-photo {
  width: 100%;
  height: clamp(280px, 33vw, 430px);
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: rotateX(0) rotateY(0);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), filter 240ms ease;
}

.photo-stage:hover .hero-food-photo {
  filter: saturate(1.05) contrast(1.03);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.floating-badge {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(15, 16, 20, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  color: var(--hero-ink);
  font-weight: 950;
  backdrop-filter: blur(12px);
  animation: softFloat 4.6s ease-in-out infinite;
}

.carousel-caption {
  position: absolute;
  right: 18px;
  bottom: 76px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 14px;
  background: rgba(10, 12, 17, 0.68);
  color: var(--hero-ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translateZ(34px);
  backdrop-filter: blur(14px);
}

.carousel-caption strong {
  font-size: 20px;
}

.carousel-caption span {
  color: var(--hero-muted);
  line-height: 1.35;
}

.carousel-controls {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.badge-top {
  top: 18px;
  left: 18px;
}

.badge-bottom {
  right: 18px;
  bottom: 18px;
  animation-delay: -1.8s;
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.food-tags {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.food-tags span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--hero-ink);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: transform 160ms var(--ease), background 160ms ease;
}

.food-tags span:hover {
  background: rgba(242, 211, 124, 0.16);
  transform: translateY(-2px) scale(1.02);
}

.quick-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #f35a17, #f15a24);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.quick-price strong {
  font-size: 42px;
}

.section {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 6vw, 88px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(18px, 6vw, 88px) clamp(42px, 6vw, 74px);
}

.trust-strip article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: var(--card-bg);
  box-shadow: 0 12px 34px rgba(17, 19, 26, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.trust-strip article::before,
.plan-card::before,
.info-grid article::before,
.order-form::before,
.checkout::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--saffron), var(--gold));
  opacity: 0.8;
}

.trust-strip article:hover {
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.trust-strip strong {
  font-size: 20px;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.band {
  background: var(--soft-band);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head .eyebrow {
  color: var(--red-dark);
}

.info-grid,
.plans,
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plans {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.structured-plans {
  grid-template-columns: minmax(170px, 0.7fr) minmax(170px, 0.7fr) minmax(170px, 0.7fr) minmax(260px, 1fr) minmax(260px, 1fr);
}

.info-grid article,
.plan-card,
.stats article,
.checkout,
.order-form,
.admin-login {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(84, 45, 22, 0.08);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms ease;
}

.info-grid article:hover,
.plan-card:hover,
.checkout:hover,
.order-form:hover,
.meal-checklist article:hover {
  border-color: rgba(245, 184, 77, 0.75);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.info-grid p,
.plan-card strong {
  margin-bottom: 6px;
  font-size: 30px;
  font-weight: 950;
}

.info-grid span,
.plan-card p,
.plan-card span,
.form-note,
.qr-box p,
td span,
.admin-login p {
  color: var(--muted);
  line-height: 1.45;
}

.highlight {
  border-color: rgba(216, 166, 58, 0.78);
  background: linear-gradient(180deg, rgba(242, 211, 124, 0.22), var(--card-bg));
}

.sunday-plan {
  border-color: rgba(229, 163, 42, 0.42);
  background: linear-gradient(180deg, rgba(229, 163, 42, 0.12), var(--card-bg));
}

.visual-menu {
  background: linear-gradient(180deg, var(--paper), var(--surface));
}

.meal-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  perspective: 1400px;
}

.meal-3d-card {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(241, 90, 36, 0.08)),
    var(--card-bg);
  box-shadow: 0 18px 46px rgba(84, 45, 22, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: rotateX(0) rotateY(0) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 230ms var(--ease), box-shadow 230ms var(--ease), border-color 230ms ease;
}

.meal-3d-card::before {
  position: absolute;
  inset: 10px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 183, 123, 0.18);
  border-radius: 20px;
  transform: translateZ(-22px);
}

.meal-3d-card::after {
  position: absolute;
  right: 8%;
  bottom: 12px;
  left: 8%;
  z-index: -2;
  height: 34px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(84, 45, 22, 0.28), transparent 70%);
  filter: blur(12px);
  transform: rotateX(70deg) translateZ(-36px);
}

.meal-3d-card:hover {
  border-color: rgba(255, 183, 123, 0.82);
  box-shadow: var(--glow);
  transform: rotateX(4deg) rotateY(-4deg) translateY(-6px);
}

.meal-3d-card.featured {
  background: linear-gradient(180deg, rgba(255, 183, 123, 0.2), var(--card-bg));
}

.meal-3d-card img {
  width: 100%;
  height: 190px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(84, 45, 22, 0.16);
  transform: translateZ(30px);
}

.meal-3d-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.meal-3d-card p {
  min-height: 92px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.service-tag,
.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(84, 45, 22, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateZ(48px);
}

.service-tag {
  margin-top: -22px;
  padding: 9px 12px;
  background: linear-gradient(145deg, var(--gold), var(--saffron));
  color: #17201d;
}

.service-tag.dinner {
  background: linear-gradient(145deg, #c85a2a, var(--red-dark));
  color: #fff;
}

.service-tag.red {
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  color: #fff;
}

.price-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 104px;
  padding: 13px 16px;
  background: linear-gradient(145deg, var(--night), var(--night-2));
  color: var(--red);
  font-size: 24px;
}

.real-meal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.real-meal-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.real-meal-photo:hover {
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.real-meal-photo img {
  width: 100%;
  height: min(56vw, 560px);
  display: block;
  object-fit: cover;
}

.meal-checklist {
  display: grid;
  gap: 10px;
}

.meal-checklist article {
  display: grid;
  gap: 5px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(84, 45, 22, 0.08);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms ease;
}

.meal-checklist strong {
  font-size: 24px;
}

.meal-checklist span {
  color: var(--muted);
}

.service-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-timeline::before {
  position: absolute;
  top: 34px;
  right: 8%;
  left: 8%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--saffron), var(--gold));
  border-radius: 999px;
}

.service-timeline article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 74px 18px 18px;
  background: var(--card-bg);
  box-shadow: 0 12px 34px rgba(84, 45, 22, 0.08);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.service-timeline article:hover {
  box-shadow: var(--glow);
  transform: translateY(-5px);
}

.time-dot {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 30px;
  height: 30px;
  border: 5px solid var(--surface);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(216, 166, 58, 0.28), 0 14px 28px rgba(22, 62, 50, 0.18);
}

.service-timeline strong {
  display: block;
  color: var(--red-dark);
  font-size: 28px;
  line-height: 1.05;
}

.service-timeline p {
  color: var(--muted);
  line-height: 1.5;
}

.price-table {
  width: 100%;
  min-width: 0;
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table th {
  width: 50%;
  background: var(--surface-2);
  text-transform: none;
}

.price-table td {
  font-weight: 950;
  text-align: right;
}

.order-section {
  background: linear-gradient(180deg, var(--surface) 0, var(--surface-2) 100%);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(330px, 0.64fr);
  gap: 18px;
  align-items: start;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(191, 63, 47, 0.66);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(191, 63, 47, 0.12);
}

textarea {
  min-height: 86px;
  resize: vertical;
}

#map {
  width: 100%;
  height: 360px;
  margin: 14px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 16px 40px rgba(84, 45, 22, 0.08);
}

.tracking-panel {
  position: relative;
  min-height: 116px;
  margin: -2px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(191, 63, 47, 0.22);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(191, 63, 47, 0.1), rgba(229, 163, 42, 0.14)),
    var(--surface);
}

.tracking-route {
  position: absolute;
  top: 34px;
  right: 88px;
  left: 82px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--red) 0 18px, transparent 18px 28px);
}

.tracking-pin {
  position: absolute;
  top: 20px;
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(84, 45, 22, 0.12);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.tracking-pin.kitchen {
  left: 18px;
}

.tracking-pin.customer {
  right: 18px;
}

.tracking-panel strong {
  display: block;
  margin-top: 46px;
  font-size: 20px;
}

.tracking-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.payment-methods {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin: 18px 0 12px;
}

.payment-chip {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 950;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms ease, color 160ms ease;
}

.payment-chip:hover,
.payment-chip.active {
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(191, 63, 47, 0.18);
  transform: translateY(-2px);
}

.map-fallback {
  padding: 20px;
}

dl {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 9px 12px;
}

dt {
  color: var(--muted);
  font-weight: 850;
}

dd {
  margin: 0;
  font-weight: 850;
}

.warning {
  color: var(--red);
}

.qr-box {
  margin: 18px 0;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  text-align: center;
}

.qr-box img {
  width: min(100%, 260px);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(84, 45, 22, 0.12);
}

.success {
  margin: 12px 0 0;
  color: var(--red-dark);
  font-weight: 900;
}

.confirmation-section {
  background: linear-gradient(180deg, #13172a, #0e1120);
}

.confirmation-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(93, 124, 87, 0.08), rgba(184, 138, 67, 0.08)),
    var(--card-bg);
  box-shadow: var(--shadow);
}

.confirmation-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.confirmation-card p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.celebration {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(16, 8, 5, 0.86);
  backdrop-filter: blur(10px);
}

.celebration[hidden] {
  display: none;
}

#fireworksCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.celebration-message {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100vw - 32px));
  border: 1px solid rgba(255, 226, 163, 0.34);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 44px);
  background: rgba(255, 248, 238, 0.1);
  color: #fff9ed;
  text-align: center;
  box-shadow: 0 32px 95px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.celebration-message span {
  color: var(--saffron);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 clamp(18px, 6vw, 88px) 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #10142a, #0b0d1a);
  box-shadow: var(--shadow);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
}

.footer-brand p,
.footer-brand strong {
  margin: 0;
}

.footer-brand p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #e9d7b0;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ink);
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 56px;
}

.legal-shell {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 54px);
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-shell ul {
  padding-left: 20px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--red-dark);
}

.celebration-message strong {
  display: block;
  margin: 12px 0;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.95;
}

.celebration-message p {
  margin-bottom: 0;
  color: rgba(255, 248, 238, 0.78);
  font-size: 18px;
}

.chat-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(242, 211, 124, 0.35);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.chat-toggle:hover {
  box-shadow: var(--glow);
  transform: translateY(-3px) scale(1.03);
}

.chat {
  position: fixed;
  right: 18px;
  bottom: 94px;
  z-index: 26;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(242, 211, 124, 0.2);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.chat header {
  display: flex;
  justify-content: space-between;
  padding: 13px;
  background: linear-gradient(145deg, var(--red), var(--night-2));
  color: #fff;
}

.chat header button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 950;
}

.chat-log {
  display: grid;
  max-height: 280px;
  gap: 8px;
  overflow: auto;
  padding: 12px;
}

.chat-log p {
  max-width: 88%;
  margin: 0;
  border-radius: 8px;
  padding: 10px;
  line-height: 1.35;
}

.chat-log .bot {
  background: var(--surface-2);
}

.chat-log .user {
  justify-self: end;
  background: rgba(191, 63, 47, 0.13);
}

.chat form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat form button {
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--red);
  color: #fff;
  font-weight: 950;
}

.admin-main {
  padding: clamp(28px, 5vw, 64px);
}

.admin-login {
  max-width: 520px;
}

.crm-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 20px;
}

.stats article {
  display: grid;
  gap: 6px;
}

.stats span {
  color: var(--muted);
  font-weight: 850;
}

.stats strong {
  font-size: 28px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

.price-table {
  min-width: 0;
  border-collapse: separate;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-2);
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  font-size: 14px;
}

td strong,
td span {
  display: block;
}

td textarea {
  min-width: 180px;
  min-height: 70px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .structured-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .plans,
  .info-grid,
  .stats,
  .real-meal-layout,
  .trust-strip,
  .meal-card-grid,
  .service-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  nav a {
    padding-inline: 8px;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-metrics,
  .plans,
  .info-grid,
  .stats,
  .structured-plans,
  .real-meal-layout,
  .trust-strip,
  .meal-card-grid,
  .service-timeline,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-timeline::before {
    top: 20px;
    bottom: 20px;
    left: 32px;
    width: 4px;
    height: auto;
  }

  .service-timeline article {
    padding-top: 20px;
    padding-left: 66px;
  }

  .time-dot {
    left: 18px;
  }

  .meal-3d-card {
    min-height: auto;
  }

  .meal-3d-card p {
    min-height: 0;
    padding-bottom: 56px;
  }

  .food-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crm-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    margin-inline: 16px;
  }

  dl {
    grid-template-columns: 1fr;
  }
}

