:root {
  --red-950: #250506;
  --red-900: #430708;
  --red-800: #650c0e;
  --red-700: #891417;
  --red-600: #ad1c20;
  --gold-500: #e9a823;
  --gold-400: #f6c456;
  --cream-50: #fffaf1;
  --cream-100: #f8eedf;
  --ink: #211b18;
  --muted: #6f625c;
  --white: #fff;
  --line: rgba(67, 7, 8, .12);
  --shadow-sm: 0 12px 30px rgba(48, 14, 10, .10);
  --shadow-lg: 0 26px 70px rgba(48, 14, 10, .20);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-dark { color: var(--white); background: var(--red-950); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--red-700);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold-500); }
.section-dark .eyebrow { color: var(--gold-400); }
.title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.title-sm { font-size: clamp(2rem, 4vw, 3.35rem); }
.lead { max-width: 660px; margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .lead { color: rgba(255,255,255,.72); }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 42px; }

.skip-link { position: fixed; left: 18px; top: -70px; z-index: 9999; padding: 12px 18px; color: #fff; background: #000; border-radius: 10px; }
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(37,5,6,.92);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 210px; height: 46px; object-fit: contain; object-position: left center; filter: drop-shadow(0 5px 10px rgba(0,0,0,.18)); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { padding: 11px 14px; color: rgba(255,255,255,.78); font-size: .94rem; font-weight: 700; border-radius: 999px; transition: .2s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.09); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.16); color: #fff; background: transparent; border-radius: 14px; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: .25s ease; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--red-950); background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); box-shadow: 0 10px 25px rgba(233,168,35,.25); }
.btn-primary:hover { box-shadow: 0 16px 32px rgba(233,168,35,.32); }
.btn-secondary { color: #fff; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.07); }
.btn-light { color: var(--red-800); background: #fff; box-shadow: var(--shadow-sm); }
.btn-outline { color: var(--red-800); border: 1px solid rgba(101,12,14,.22); background: transparent; }
.btn svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(233,168,35,.18), transparent 30%),
    linear-gradient(135deg, var(--red-950) 0%, #4b080a 54%, #750f12 100%);
}
.hero::before, .hero::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.hero::before { width: 560px; height: 560px; right: -230px; top: -180px; }
.hero::after { width: 420px; height: 420px; left: -250px; bottom: -250px; }
.hero-grid { position: relative; z-index: 2; min-height: 720px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 56px; padding: 74px 0 92px; }
.hero-copy .eyebrow { color: var(--gold-400); }
.hero-copy h1 { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.15rem, 6.5vw, 6.4rem); line-height: .94; letter-spacing: -.055em; }
.hero-copy h1 span { display: block; color: var(--gold-400); }
.hero-copy p { max-width: 600px; margin: 25px 0 0; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 38px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-meta-item { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.72); font-size: .92rem; }
.hero-meta-item strong { display: block; color: #fff; }
.icon-box { display: grid; flex: 0 0 auto; width: 40px; height: 40px; place-items: center; color: var(--gold-400); background: rgba(255,255,255,.08); border-radius: 12px; }
.icon-box svg { width: 20px; height: 20px; }

.hero-gallery { position: relative; min-height: 535px; }
.food-card { position: absolute; overflow: hidden; background: #fff; border: 6px solid rgba(255,255,255,.08); border-radius: 28px; box-shadow: var(--shadow-lg); }
.food-card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.food-card.one { width: 54%; height: 54%; left: 0; top: 2%; transform: rotate(-4deg); }
.food-card.two { width: 48%; height: 43%; right: 0; top: 11%; transform: rotate(5deg); }
.food-card.three { width: 48%; height: 43%; left: 8%; bottom: 0; transform: rotate(4deg); }
.food-card.four { width: 42%; height: 38%; right: 3%; bottom: 4%; transform: rotate(-5deg); }
.hero-seal { position: absolute; z-index: 3; right: 32%; top: 42%; display: grid; width: 128px; height: 128px; place-items: center; padding: 18px; text-align: center; color: var(--red-950); background: var(--gold-400); border: 7px solid var(--red-900); border-radius: 50%; box-shadow: 0 20px 45px rgba(0,0,0,.28); transform: rotate(-8deg); }
.hero-seal strong { display: block; font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.05; }
.hero-seal span { display: block; margin-top: 4px; font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.trust-strip { position: relative; z-index: 5; margin-top: -36px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 25px 28px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item svg { width: 28px; height: 28px; color: var(--red-700); }
.trust-item strong { display: block; }
.trust-item span { display: block; color: var(--muted); font-size: .88rem; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; overflow: hidden; min-height: 430px; padding: 30px; display: flex; flex-direction: column; justify-content: end; color: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); isolation: isolate; }
.feature-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,3,3,.05), rgba(20,3,3,.9)); }
.feature-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-card:hover img { transform: scale(1.06); }
.feature-card .number { position: absolute; top: 24px; right: 24px; display: grid; width: 48px; height: 48px; place-items: center; color: var(--red-950); background: var(--gold-400); border-radius: 50%; font-weight: 900; }
.feature-card h3 { margin: 0; font-family: Georgia, serif; font-size: 2rem; }
.feature-card p { margin: 10px 0 0; color: rgba(255,255,255,.74); }

.menu-preview { background: var(--cream-100); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.menu-item { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 18px; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 20px; transition: transform .2s ease, box-shadow .2s ease; }
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.menu-item img { width: 92px; height: 92px; object-fit: cover; border-radius: 16px; }
.menu-item h3 { margin: 0 0 5px; font-family: Georgia, serif; font-size: 1.22rem; }
.menu-item p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.45; }
.menu-item .price { align-self: start; padding: 7px 10px; color: var(--red-700); background: rgba(173,28,32,.08); border-radius: 999px; font-size: .78rem; font-weight: 900; white-space: nowrap; }

.promo-band { position: relative; overflow: hidden; padding: 72px 0; color: #fff; background: linear-gradient(110deg, var(--red-900), var(--red-700)); }
.promo-band::after { content: "餐"; position: absolute; right: 2%; top: -95px; color: rgba(255,255,255,.055); font-family: serif; font-size: 20rem; line-height: 1; }
.promo-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.promo-grid h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.04em; }
.promo-grid p { max-width: 700px; margin: 18px 0 0; color: rgba(255,255,255,.75); }

.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 78px; }
.about-image { position: relative; min-height: 530px; }
.about-image-main { position: absolute; inset: 0 8% 8% 0; width: 92%; height: 92%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-image-small { position: absolute; right: 0; bottom: 0; width: 45%; height: 45%; object-fit: cover; border: 8px solid var(--cream-50); border-radius: 26px; box-shadow: var(--shadow-sm); }
.about-badge { position: absolute; left: 30px; bottom: 18px; padding: 18px 22px; color: #fff; background: var(--red-800); border-radius: 18px; box-shadow: var(--shadow-sm); }
.about-badge strong { display: block; font-family: Georgia, serif; font-size: 1.45rem; }
.about-list { display: grid; gap: 17px; margin: 30px 0 0; }
.about-list-item { display: flex; gap: 14px; align-items: flex-start; }
.about-list-item .check { display: grid; flex: 0 0 auto; width: 28px; height: 28px; place-items: center; color: var(--red-800); background: rgba(233,168,35,.25); border-radius: 50%; font-weight: 900; }
.about-list-item strong { display: block; }
.about-list-item span { color: var(--muted); font-size: .92rem; }

.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 28px; }
.contact-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.contact-card h2, .contact-card h3 { margin-top: 0; font-family: Georgia, serif; }
.contact-info { display: grid; gap: 16px; margin-top: 26px; }
.contact-row { display: flex; gap: 15px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.contact-row:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-row svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--red-700); }
.contact-row strong { display: block; }
.contact-row span, .contact-row a { color: var(--muted); }
.map-card { min-height: 430px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; position: relative; color: #fff; background: linear-gradient(rgba(37,5,6,.12), rgba(37,5,6,.88)), url('../img/carne-legumes.jpg') center/cover; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.map-card-content { padding: 36px; }
.map-card h3 { margin: 0; font-family: Georgia, serif; font-size: 2rem; }
.map-card p { max-width: 540px; color: rgba(255,255,255,.74); }

.page-hero { padding: 90px 0 78px; color: #fff; background: linear-gradient(135deg, var(--red-950), var(--red-700)); }
.page-hero .breadcrumb { margin-bottom: 16px; color: rgba(255,255,255,.65); font-size: .88rem; }
.page-hero h1 { max-width: 820px; margin: 0; font-family: Georgia, serif; font-size: clamp(3rem, 7vw, 5.8rem); line-height: .95; letter-spacing: -.05em; }
.page-hero p { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.75); }

.menu-toolbar { position: sticky; top: 86px; z-index: 50; padding: 16px 0; background: rgba(255,250,241,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.toolbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { min-height: 42px; padding: 0 16px; border: 1px solid var(--line); color: var(--muted); background: #fff; border-radius: 999px; font-weight: 800; }
.filter-btn.active { color: #fff; background: var(--red-800); border-color: var(--red-800); }
.search-box { position: relative; width: min(320px, 100%); }
.search-box input { width: 100%; min-height: 44px; padding: 0 16px 0 43px; border: 1px solid var(--line); outline: 0; background: #fff; border-radius: 999px; }
.search-box input:focus { border-color: var(--red-700); box-shadow: 0 0 0 4px rgba(173,28,32,.08); }
.search-box svg { position: absolute; left: 15px; top: 50%; width: 18px; height: 18px; color: var(--muted); transform: translateY(-50%); }
.menu-section { padding: 38px 0 80px; }
.menu-category { margin-top: 46px; }
.menu-category:first-child { margin-top: 0; }
.menu-category-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 20px; }
.menu-category h2 { margin: 0; font-family: Georgia, serif; font-size: 2.25rem; }
.menu-category .count { color: var(--muted); font-size: .85rem; }
.full-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dish-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 22px; transition: transform .2s ease, box-shadow .2s ease; }
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.dish-card-image { position: relative; height: 210px; overflow: hidden; }
.dish-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.dish-card:hover .dish-card-image img { transform: scale(1.05); }
.dish-tag { position: absolute; left: 14px; top: 14px; padding: 7px 10px; color: #fff; background: rgba(37,5,6,.82); border-radius: 999px; font-size: .72rem; font-weight: 900; backdrop-filter: blur(8px); }
.dish-card-body { padding: 22px; }
.dish-card-top { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.dish-card h3 { margin: 0; font-family: Georgia, serif; font-size: 1.32rem; }
.dish-card .price { flex: 0 0 auto; color: var(--red-700); font-weight: 900; }
.dish-card p { min-height: 50px; margin: 10px 0 0; color: var(--muted); font-size: .9rem; }
.no-results { display: none; padding: 70px 20px; text-align: center; color: var(--muted); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; padding: 12px 15px; border: 1px solid var(--line); outline: 0; background: #fff; border-radius: 14px; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red-700); box-shadow: 0 0 0 4px rgba(173,28,32,.08); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .8rem; }

.site-footer { padding: 65px 0 24px; color: rgba(255,255,255,.72); background: var(--red-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 54px; }
.footer-logo { width: 260px; max-height: 62px; object-fit: contain; object-position: left center; }
.footer-intro { max-width: 450px; margin: 20px 0 0; }
.footer-title { margin: 0 0 16px; color: #fff; font-size: .92rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }

.floating-order { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; min-height: 58px; padding: 0 22px; color: var(--red-950); background: var(--gold-400); border-radius: 999px; box-shadow: 0 18px 45px rgba(37,5,6,.28); font-weight: 900; }
.floating-order svg { width: 22px; height: 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .section { padding: 78px 0; }
  .nav { position: fixed; inset: 86px 0 auto; display: none; padding: 18px 20px 24px; flex-direction: column; align-items: stretch; background: var(--red-950); border-top: 1px solid rgba(255,255,255,.08); }
  .nav.open { display: flex; }
  .nav a { text-align: center; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { text-align: center; }
  .hero-copy p, .hero-copy .eyebrow { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-gallery { width: min(650px, 100%); margin: 0 auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .cards-3, .full-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-image { min-height: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 76px; }
  .brand img { width: 170px; }
  .nav { inset-block-start: 76px; }
  .hero-grid { padding: 58px 0 82px; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-gallery { min-height: 420px; }
  .hero-seal { width: 105px; height: 105px; right: 30%; top: 40%; }
  .hero-seal strong { font-size: 1.05rem; }
  .hero-meta { display: grid; grid-template-columns: 1fr; text-align: left; }
  .trust-strip { margin-top: -28px; }
  .section-heading { display: block; }
  .section-heading .btn { margin-top: 22px; }
  .cards-3, .menu-grid, .full-menu-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 390px; }
  .menu-item { grid-template-columns: 78px 1fr; }
  .menu-item img { width: 78px; height: 78px; }
  .menu-item .price { grid-column: 2; justify-self: start; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-grid .btn { justify-self: start; }
  .about-image { min-height: 410px; }
  .toolbar-inner { display: grid; }
  .search-box { width: 100%; }
  .menu-toolbar { top: 76px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-order { right: 14px; bottom: 14px; left: 14px; justify-content: center; }
  body { padding-bottom: 82px; }
}

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

.site-alert{padding:14px 16px;border-radius:10px;margin:0 0 18px;border:1px solid #bbf7d0;background:#ecfdf5;color:#166534}.site-alert.error{border-color:#fecaca;background:#fef2f2;color:#991b1b}
