:root {
  --bg: #faf8f6;
  --surface: #ffffff;
  --text: #111111;
  --muted: #2f2f2f;
  --primary: #c91d1d;
  --accent: #c77d3d;
  --cream: #fff7f0;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  scroll-behavior: smooth;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}
p {
  margin: 0 0 12px;
  color: var(--muted);
}
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  will-change: transform;
}
.btn.primary {
  background: linear-gradient(135deg, #e31e1e, var(--primary));
  color: #fff;
  box-shadow: 0 8px 24px rgba(201, 29, 29, .35);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 29, 29, .45);
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,.16);
  backdrop-filter: blur(6px);
}
.btn.ghost:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  color: #111;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.brand-text {
  line-height: 1.05;
}
.brand-title {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
}
.brand-sub {
  display: block;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.nav-list a:hover {
  color: #fff;
  background: linear-gradient(135deg, #e31e1e, var(--primary));
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(201,29,29,.25);
}
.nav-list a.active {
  color: #fff;
  background: linear-gradient(135deg, #e31e1e, var(--primary));
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(201,29,29,.25);
}
.nav-list .cta-link {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  color: #000;
}
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1200px 600px at 10% 10%, rgba(201,29,29,.12), transparent 60%),
    radial-gradient(1000px 500px at 90% 20%, rgba(212,163,115,.12), transparent 65%);
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.02) brightness(1.02);
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.42));
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 80px 0;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(40px, 6.2vw, 76px);
  color: #0d0d0d;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.hero p {
  font-size: clamp(17px, 2.3vw, 23px);
  margin: 10px auto 24px;
  width: min(800px, 92%);
  color: #1f1f1f;
  text-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.section-head {
  text-align: center;
  padding: 64px 0 36px;
}
.badge-list {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  color: #222;
  font-weight: 600;
}
.badge-ico {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(18px 12px at 40% 40%, rgba(0,0,0,.05), transparent), linear-gradient(135deg, #e31e1e, var(--primary));
  box-shadow: 0 6px 18px rgba(201,29,29,.25);
  border: 1px solid rgba(0,0,0,.06);
}
.badge-ico img {
  width: 14px;
  height: 14px;
}
.badge:hover {
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.12);
}
.grid.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 60px;
}
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transform: translate3d(0,0,0);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,.15);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 16px;
}
.card h3 {
  font-size: 22px;
}
.price {
  margin-top: 8px;
  font-weight: 700;
  color: var(--accent);
}
.menu {
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.01));
}
.menu-center {
  display: grid;
  place-items: center;
  min-height: 70vh;
}
.menu-image {
  width: min(1200px, 96%);
  margin: 0 auto 60px;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.signature-image {
  width: min(1200px, 96%);
  margin: 10px auto 64px;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.menu-image.placeholder {
  background: #fff;
  padding: 24px;
  text-align: center;
}
.menu-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.prices-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.prices-cat {
  margin: 0 0 12px;
  font-size: 20px;
}
.prices-table {
  width: 100%;
  border-collapse: collapse;
}
.prices-table th,
.prices-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.prices-table td:last-child {
  text-align: right;
  color: var(--accent);
  font-weight: 700;
}
@media print {
  body * {
    visibility: hidden;
  }
  .menu-print, .menu-print * {
    visibility: visible;
  }
  .menu-print {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .menu-image {
    box-shadow: none;
    border: none;
    width: 100%;
  }
}
.tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.tab {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.1);
  color: #222;
  cursor: pointer;
  font-weight: 600;
}
.tab.active {
  background: linear-gradient(135deg, #e31e1e, var(--primary));
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(201,29,29,.25);
}
.tab-panels {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
}
.tab-panels .panel {
  display: none;
}
.tab-panels .panel.active {
  display: block;
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 120px;
  row-gap: 10px;
}
.menu-list li {
  display: contents;
}
.menu-list li span:last-child {
  text-align: right;
  color: var(--accent);
  font-weight: 700;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding-bottom: 36px;
}
.gallery-box {
  width: min(1200px, 96%);
  margin: 0 auto 64px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.g-item {
  position: relative;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
}
.video-badge {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  display: grid;
  place-items: center;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.video-badge::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 2px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease, box-shadow .2s ease;
}
.g-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.2);
}
.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
}
.gallery-modal.open {
  display: grid;
  place-items: center;
}
.gm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}
.gm-content {
  position: relative;
  z-index: 1;
  width: min(1000px, 92%);
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.gm-body {
  width: 100%;
}
.gm-title {
  margin-top: 10px;
  color: var(--muted);
}
.gm-close {
  position: absolute;
  right: 14px;
  top: 14px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 64px;
}
.about-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
}
.about-long {
  width: min(1200px, 96%);
  margin: 0 auto 64px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  display: grid;
  gap: 12px;
}
.about-p {
  font-family: "Segoe UI", Roboto, system-ui, -apple-system, "Noto Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  letter-spacing: .1px;
  margin: 0 0 14px;
  white-space: pre-line;
}
.about-card {
  position: relative;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.01));
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: linear-gradient(135deg, #e31e1e, var(--accent));
}
.cta {
  background:
    radial-gradient(900px 480px at 10% 60%, rgba(201,29,29,.08), transparent 60%),
    radial-gradient(900px 480px at 90% 80%, rgba(212,163,115,.08), transparent 60%);
  padding: 80px 0;
}
.cta-inner {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 28px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 14px 0 8px;
}
.wa-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 6px 0 12px;
}
.wa-dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.wa-menu {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  min-width: 280px;
  padding: 6px;
  z-index: 1000;
}
.wa-dropdown.open .wa-menu {
  display: block;
}
.wa-item {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.wa-item:hover {
  background: rgba(0,0,0,.06);
}
.btn.small {
  padding: 8px 12px;
}
.wa-options .btn.active {
  color: #fff;
  background: linear-gradient(135deg, #e31e1e, var(--primary));
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(201,29,29,.25);
}
.cta-phones {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 8px 0 12px;
  color: var(--muted);
  font-weight: 600;
}
.cta-phone {
  color: #111;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.1);
  direction: ltr;
  unicode-bidi: plaintext;
}
.cta-phone:hover {
  background: rgba(0,0,0,.08);
}
.cta-phones .sep {
  color: rgba(0,0,0,.5);
}
.cta-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 14px;
}
.site-footer {
  margin-top: 40px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 -10px 30px rgba(0,0,0,.06) inset;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px 0;
  align-items: center;
}
.footer-links, .footer-social {
  display: flex;
  gap: 12px;
}
.footer-payments {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer-links {
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a, .footer-social a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 600;
}
.footer-social {
  justify-content: flex-end;
}
.pay-logo svg {
  display: block;
  height: 32px;
}
.footer-links a:hover, .footer-social a:hover {
  color: #fff;
  background: linear-gradient(135deg, #e31e1e, var(--primary));
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(201,29,29,.25);
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.1);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e31e1e, var(--primary));
  color: #fff;
  box-shadow: 0 8px 24px rgba(201,29,29,.25);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-copy {
  text-align: center;
  padding: 14px 0 24px;
  color: var(--muted);
  border-top: 1px solid rgba(0,0,0,.06);
}
[data-modal] {
  display: none;
}
[data-modal].open {
  display: block;
}
[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .grid.cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 76px;
    top: calc(env(safe-area-inset-top) + 76px);
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 14px;
    display: none;
    z-index: 2000;
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav.open .nav-list { display: flex; }
  .nav-list a {
    color: #111;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.1);
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 1500;
  }
  .nav.open + .nav-overlay { display: block; }
  .hamburger {
    display: inline-flex;
    background: linear-gradient(135deg, #e31e1e, var(--primary));
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(201,29,29,.35);
  }
  .about-grid {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .menu-list {
    grid-template-columns: 1fr 90px;
  }
  .cta-details {
    grid-template-columns: 1fr;
  }
  .prices-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .grid.cards {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-actions {
    flex-direction: column;
  }
  .about-p {
    font-size: 15px;
  }
}
