/* =========================================================
   Silver Service Takeaway — modern redesign
   Self-contained styles (no framework). Mobile-first.
   Theme: red & white.
   ========================================================= */

:root {
  --bg:        #ffffff;
  --bg-2:      #fff6f5;
  --surface:   #ffffff;
  --surface-2: #fff1f0;
  --line:      rgba(20, 20, 30, 0.10);
  --line-soft: rgba(20, 20, 30, 0.06);
  --text:      #1a1c22;
  --muted:     #6b7080;
  --red:       #e11d2a;
  --red-2:     #ff3b46;
  --red-dark:  #b01016;
  --red-soft:  rgba(225, 29, 42, 0.08);
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px -24px rgba(176, 16, 22, 0.28);
  --shadow-sm: 0 10px 30px -16px rgba(20, 20, 30, 0.25);
  --maxw:      1120px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.1; letter-spacing: -0.01em; color: var(--text); }

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

img, iframe { max-width: 100%; display: block; }

.accent { color: var(--red); }
.muted  { color: var(--muted); }

/* ---------- Image thumbnails with emoji fallback ---------- */
/* If <img> fails (or is blocked), onerror removes it and the
   data-emoji fallback below shows automatically. */
.thumb {
  position: relative; overflow: hidden; background:
    radial-gradient(120% 120% at 30% 20%, var(--surface-2), #ffe3e1);
  display: grid; place-items: center;
}
.thumb::before {
  content: attr(data-emoji); font-size: 2.8rem; line-height: 1;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.12));
}
.thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--red-2), var(--red));
  color: #fff; box-shadow: 0 12px 30px -10px rgba(225, 29, 42, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(225, 29, 42, 0.65); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--red); }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0,0,0,0.35); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(20,20,30,0.4);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 8px 0; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid; place-items: center; width: 63px; height: 63px;
  border-radius: 16px; overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.05rem; letter-spacing: 0.2px; }
.brand-text em { font-style: normal; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav > a:not(.btn) { font-size: 0.94rem; font-weight: 500; color: var(--text); transition: color .2s; }
.nav > a:not(.btn):hover { color: var(--red); }
.nav-phone { font-weight: 600 !important; }
.nav-cta { padding: 10px 20px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 80px; overflow: hidden; background:
  radial-gradient(120% 90% at 90% -10%, var(--red-soft), transparent 55%); }
.hero-glow {
  position: absolute; top: -25%; right: -10%; width: 70vw; height: 70vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(225,29,42,0.14), transparent 62%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }

.eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.4px;
  color: var(--red-dark); background: var(--red-soft); border: 1px solid rgba(225,29,42,0.2);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero-copy h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 700; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 32ch; margin: 22px 0 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: var(--muted); font-size: 0.92rem; font-weight: 600; }

/* App store badges */
.hero-apps { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #15171c; color: #fff; padding: 9px 16px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.app-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(0,0,0,0.4); }
.app-badge-ico { width: 22px; height: 22px; background-size: contain; background-repeat: no-repeat; background-position: center; flex: 0 0 auto; }
.app-badge:nth-child(1) .app-badge-ico {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='white'%3E%3Cpath d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C61.5 141.2 0 184.6 0 273.3c0 26.2 4.8 53.3 14.4 81.2 12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-57.7-91.7zM256.6 76.4c25.5-30.2 23.2-57.7 22.4-67.6-22.6 1.3-48.8 15.4-63.7 32.8-16.4 18.7-26 41.8-23.9 67.1 24.4 1.9 46.7-10.5 65.2-32.3z'/%3E%3C/svg%3E");
}
.app-badge:nth-child(2) .app-badge-ico {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2300d2ff' d='M47 32c-9 5-15 14-15 26v396c0 12 6 21 15 26l231-224z'/%3E%3Cpath fill='%2300f076' d='M47 32l231 224 60-58L93 31c-18-10-35-7-46 1z'/%3E%3Cpath fill='%23ffce00' d='M278 256l-231 224c11 8 28 11 46 1l245-140z'/%3E%3Cpath fill='%23ff3a44' d='M338 198l-60 58 60 58 100-57c20-12 20-30 0-42z'/%3E%3C/svg%3E");
}
.app-badge-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.app-badge-text small { font-size: 0.62rem; opacity: 0.8; }
.app-badge-text strong { font-size: 0.95rem; font-weight: 600; }

/* Hero visual */
.hero-visual { position: relative; aspect-ratio: 1 / 1; max-width: 460px; margin: 0 auto; width: 100%; }
.hero-photo {
  position: absolute; border-radius: 26px; border: 5px solid #fff;
  box-shadow: var(--shadow); background-size: cover;
}
.hero-photo:not(.hero-photo-sm) { inset: 0 0 14% 16%; }
.hero-photo-sm { width: 46%; aspect-ratio: 1/1; right: 2%; bottom: 4%; border-radius: 22px; z-index: 2; animation: float 6s var(--ease) infinite; }
.hero-photo .thumb, .hero-photo::before { border-radius: 20px; }

.hero-badge {
  position: absolute; top: 6%; right: 0; z-index: 3; background: linear-gradient(135deg, var(--red-2), var(--red));
  color: #fff; padding: 12px 18px; border-radius: 16px; box-shadow: 0 16px 34px -12px rgba(225,29,42,0.7);
  text-align: center; transform: rotate(4deg);
}
.hero-badge strong { display: block; font-family: "Fraunces", serif; font-size: 1.1rem; }
.hero-badge span { font-size: 0.74rem; font-weight: 600; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Feature strip ---------- */
.strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px 22px; }
.strip-item { display: flex; gap: 13px; align-items: flex-start; }
.strip-item span { font-size: 1.5rem; line-height: 1; }
.strip-item strong { display: block; font-size: 0.98rem; }
.strip-item p { font-size: 0.85rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 86px 0; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.kicker {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.kicker.light { color: #fff; opacity: 0.92; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Menu grid ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}
.menu-card:hover { transform: translateY(-6px); border-color: rgba(225,29,42,0.4); box-shadow: 0 26px 50px -24px rgba(176,16,22,0.4); }
.menu-thumb { aspect-ratio: 16 / 10; width: 100%; }
.menu-card-body { padding: 22px 24px 26px; }
.menu-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.menu-card p { color: var(--muted); font-size: 0.94rem; }
.menu-card .from { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--red); font-size: 0.9rem; }

.menu-cta { text-align: center; margin-top: 44px; }
.menu-note { color: var(--muted); font-size: 0.85rem; margin-top: 14px; }

/* ---------- Favourites ---------- */
.fav-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fav-card {
  display: flex; gap: 18px; align-items: center; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}
.fav-card:hover { transform: translateY(-4px); border-color: rgba(225,29,42,0.35); }
.fav-thumb { flex: 0 0 auto; width: 92px; height: 92px; border-radius: 14px; }
.fav-thumb::before { font-size: 2.3rem; }
.fav-body h3 { font-size: 1.18rem; }
.fav-body p { color: var(--muted); font-size: 0.9rem; margin: 5px 0 9px; }
.tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--red-dark); background: var(--red-soft); padding: 4px 11px; border-radius: 999px;
}

/* ---------- Order banner ---------- */
.order-banner {
  position: relative; overflow: hidden; border-radius: 28px;
  background: linear-gradient(135deg, var(--red-2), var(--red-dark));
  color: #fff; padding: 56px 50px; display: grid; grid-template-columns: 1.4fr 0.6fr; align-items: center; gap: 30px;
  box-shadow: 0 30px 60px -28px rgba(176,16,22,0.6);
}
.order-copy h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
.order-copy p { margin: 14px 0 26px; font-size: 1.06rem; max-width: 46ch; opacity: 0.95; }
.order-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.order-art { position: relative; height: 180px; }
.bag { font-size: 7rem; text-align: center; line-height: 180px; filter: drop-shadow(0 14px 20px rgba(0,0,0,0.3)); }
.spark { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.7); animation: pop 2.4s ease-in-out infinite; }
.spark.s1 { width: 14px; height: 14px; top: 20%; left: 18%; }
.spark.s2 { width: 9px; height: 9px; top: 60%; right: 22%; animation-delay: .5s; }
.spark.s3 { width: 11px; height: 11px; bottom: 14%; left: 40%; animation-delay: 1s; }
@keyframes pop { 0%,100% { transform: scale(0.6); opacity: .3; } 50% { transform: scale(1.1); opacity: .9; } }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .3s var(--ease); box-shadow: var(--shadow-sm);
}
.review:hover { transform: translateY(-4px); }
.stars { color: var(--red); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review p { font-size: 1.02rem; color: var(--text); }
.review cite { display: block; margin-top: 16px; font-style: normal; color: var(--muted); font-size: 0.88rem; font-weight: 600; }

/* ---------- Visit ---------- */
.visit-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
.info-list { list-style: none; margin: 26px 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-ico {
  flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; font-size: 1.3rem;
  border-radius: 12px; background: var(--red-soft); border: 1px solid rgba(225,29,42,0.18);
}
.info-list strong { font-size: 1rem; }
.info-list p { color: var(--text); font-size: 0.95rem; }
.info-list a:hover { color: var(--red); }
.visit-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.visit-map iframe { width: 100%; height: 380px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #15171c; color: #d7dae2; padding: 56px 0 30px; }
.site-footer h2, .footer-brand strong { color: #fff; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 30px; }
.footer-brand strong { font-family: "Fraunces", serif; font-size: 1.3rem; }
.footer-brand p { color: #9aa0ad; margin-top: 8px; font-size: 0.92rem; max-width: 30ch; }
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { color: #d7dae2; font-size: 0.94rem; transition: color .2s; }
.footer-nav a:hover { color: var(--red-2); }
.footer-contact p { font-size: 0.94rem; margin-bottom: 8px; color: #d7dae2; }
.footer-contact a:hover { color: var(--red-2); }
.footer-apps { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-apps a { color: #fff; font-weight: 600; }
.footer-social { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.footer-social a { color: #d7dae2; font-size: 0.94rem; transition: color .2s; }
.footer-social a:hover { color: var(--red-2); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.84rem; color: #9aa0ad;
}
.site-footer .muted { color: #9aa0ad; }

/* ---------- Sticky mobile order bar ---------- */
.order-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px -20px rgba(20,20,30,0.4);
}
.order-bar .btn { flex: 1; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 380px; }
  .lead { max-width: none; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; gap: 30px; }
  .order-banner { grid-template-columns: 1fr; }
  .order-art { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 4px; padding: 18px 22px 26px; background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .3s;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav > a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { margin-top: 12px; }
  .nav-toggle { display: flex; }
  .brand-mark { width: 44px; height: 44px; }
  .hero { padding: 130px 0 64px; }
  .section { padding: 64px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .fav-grid { grid-template-columns: 1fr; }
  .order-banner { padding: 40px 26px; }
  .footer-inner { grid-template-columns: 1fr; }
  .order-bar { display: flex; }
  body { padding-bottom: 76px; }
}

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