:root {
  --primary: #8b1e1e;
  --primary-dark: #5f1414;
  --primary-deep: #34110d;
  --secondary: #fff4e2;
  --accent: #d99a32;
  --accent-soft: #f3c46b;
  --dark: #241410;
  --text: #2b1a14;
  --muted: #765d51;
  --light: #fff9f0;
  --white: #ffffff;
  --border: rgba(139, 30, 30, 0.14);
  --shadow: 0 18px 45px rgba(36, 20, 16, 0.12);
  --radius: 20px;
  --header-offset: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100svh;
  overflow-x: hidden;
  margin: 0;
  padding-top: var(--header-offset);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--light);
  color: var(--text);
}

body.scroll-locked {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg,
iframe {
  max-width: 100%;
}

img,
video {
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

[id] {
  scroll-margin-top: calc(var(--header-offset) + 18px);
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

section {
  padding-block: clamp(56px, 8vw, 112px);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-block: 0;
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 9vw, 4.9rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.7rem, 5vw, 3.15rem);
  line-height: 1.14;
}

h3 {
  font-size: clamp(1.12rem, 3vw, 1.45rem);
  line-height: 1.25;
}

p {
  margin-block: 0;
  font-size: clamp(0.98rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background:
    linear-gradient(135deg, rgba(95, 20, 20, 0.97), rgba(139, 30, 30, 0.96)),
    var(--primary);
  border-bottom: 1px solid rgba(217, 154, 50, 0.22);
  box-shadow: 0 12px 28px rgba(36, 20, 16, 0.16);
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--secondary);
  font-size: clamp(0.92rem, 3.5vw, 1rem);
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.brand img {
  width: clamp(42px, 10vw, 50px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 18px rgba(36, 20, 16, 0.18);
}

.brand span {
  min-width: 0;
}

.nav-toggle {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  gap: 6px;
  padding: 0;
  border: 0;
  background: var(--accent);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(36, 20, 16, 0.22);
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-toggle:hover {
  background: var(--accent-soft);
}

.nav-toggle:active {
  transform: scale(0.94);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--primary-deep);
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: var(--header-offset) 0 0;
  z-index: 995;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 100%;
  overflow-y: auto;
  padding: 24px 22px calc(28px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, #5f1414, #34110d);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.main-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-backdrop {
  display: none;
}

.main-nav ul {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav li {
  min-width: 0;
  border-bottom: 1px solid rgba(255, 244, 226, 0.08);
}

.main-nav li:last-child {
  border-bottom: 0;
}

.main-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--secondary);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.main-nav ul a::after {
  content: "›";
  color: rgba(217, 154, 50, 0.7);
  font-size: 1.4rem;
  line-height: 1;
}

.main-nav a:hover,
.main-nav a:active {
  background: rgba(255, 244, 226, 0.1);
  color: var(--accent-soft);
  padding-left: 22px;
}

.main-nav .nav-call {
  justify-content: center;
  min-height: 54px;
  margin-top: 8px;
  background: var(--accent);
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.main-nav .nav-call::after {
  content: none;
}

.main-nav .nav-call:hover {
  background: var(--accent-soft);
  color: var(--dark);
}

.hero-section {
  padding-block: clamp(46px, 7vw, 96px);
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 154, 50, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 249, 240, 0.7), rgba(255, 244, 226, 1));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-copy {
  display: grid;
  gap: 18px;
  max-width: 640px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(0.78rem, 2.1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: min(100%, 180px);
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: clamp(0.95rem, 2vw, 1rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(139, 30, 30, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-soft);
  color: var(--dark);
}

.hero-media,
.section-media,
.map-frame {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 122 / 100;
  object-fit: cover;
}

.section-block {
  background: var(--white);
}

.section-soft {
  background: var(--light);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
}

.section-copy,
.section-head,
.contact-panel {
  min-width: 0;
}

.section-copy {
  display: grid;
  gap: 16px;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(22px, 4vw, 34px);
  text-align: center;
}

.section-head h2 {
  max-width: 780px;
  margin-inline: auto;
}

.section-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-width: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.05rem);
  line-height: 1.6;
  overflow-wrap: break-word;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.feature-grid,
.menu-grid,
.gallery-grid,
.testimonials-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.feature-card,
.menu-card,
.testimonial-card,
.contact-card,
.brand-footer,
.gallery-grid img {
  min-width: 0;
  overflow: hidden;
}

.feature-card,
.menu-card,
.testimonial-card,
.contact-card,
.brand-footer {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(36, 20, 16, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.menu-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(36, 20, 16, 0.14);
}

.feature-card img,
.menu-card img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
}

.feature-card img,
.menu-card img {
  aspect-ratio: 4 / 3;
}

.feature-body,
.menu-card-content,
.testimonial-card,
.contact-card,
.brand-footer {
  padding: clamp(18px, 3vw, 26px);
}

.feature-body,
.menu-card-content {
  display: grid;
  gap: 12px;
}

.feature-body h3,
.menu-card h3 {
  color: var(--primary);
}

.feature-body p,
.menu-card p,
.testimonial-card p {
  color: var(--muted);
}

.menu-card {
  display: flex;
  flex-direction: column;
}

.menu-card img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-card:hover img {
  transform: scale(1.04);
}

.menu-card-content {
  flex: 1;
}

.menu-card .category {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(217, 154, 50, 0.16);
  color: var(--primary);
  font-size: clamp(0.82rem, 2vw, 0.9rem);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.menu-card .price {
  margin-top: auto;
  color: var(--primary);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 850;
}

.filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.filter-btn {
  min-height: 44px;
  min-width: 0;
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: clamp(0.9rem, 2vw, 0.98rem);
  font-weight: 750;
  cursor: pointer;
  overflow-wrap: anywhere;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(139, 30, 30, 0.22);
}

.gallery-grid img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(36, 20, 16, 0.18);
}

.stars {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.testimonial-card p {
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card cite {
  color: var(--primary);
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--border);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(217, 154, 50, 0.1);
}

.contact-card strong {
  color: var(--primary);
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card a,
.contact-card span {
  min-width: 0;
  color: var(--text);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 2px solid var(--primary);
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 800;
}

.social-row a:hover {
  background: var(--primary);
  color: var(--white);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: clamp(260px, 42vw, 420px);
  border: 0;
}

.footer-block {
  padding-top: clamp(44px, 7vw, 78px);
  background: var(--dark);
  color: var(--secondary);
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  align-items: start;
}

.brand-footer {
  background: rgba(255, 255, 255, 0.055);
}

.brand-footer img {
  width: 88px;
  aspect-ratio: 1;
  margin-bottom: 16px;
  border-radius: 12px;
  object-fit: contain;
}

.brand-footer p,
.footer-grid p {
  color: var(--secondary);
  font-size: clamp(0.95rem, 2vw, 1rem);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--accent);
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--secondary);
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-copy {
  margin-top: clamp(28px, 5vw, 44px);
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copy p {
  margin-block: 4px;
  color: rgba(255, 244, 226, 0.78);
  font-size: 0.92rem;
}

.footer-copy a {
  color: var(--accent-soft);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy a:hover {
  color: var(--accent);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92vw, 960px);
  max-height: 82svh;
}

.lightbox img {
  width: auto;
  max-width: 92vw;
  max-height: 82svh;
  border-radius: min(var(--radius), 18px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
  background: var(--accent-soft);
}

.fixed-actions {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 999;
  display: grid;
  gap: 10px;
}

.fixed-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 12vw, 56px);
  height: clamp(50px, 12vw, 56px);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(36, 20, 16, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.fixed-action:hover {
  transform: translateY(-3px);
}

.phone-action {
  background: var(--primary);
}

.phone-action:hover {
  background: var(--primary-dark);
}

.whatsapp-action {
  background: #25d366;
}

.whatsapp-action:hover {
  background: #20ba5a;
}

.fixed-action svg {
  width: 23px;
  height: 23px;
}

@media (max-width: 360px) {
  :root {
    --header-offset: 68px;
  }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .topbar-inner {
    min-height: 68px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 40px;
    border-radius: 10px;
  }

  .nav-toggle {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .filter-btn {
    flex: 1 1 calc(50% - 10px);
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: -10px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  section {
    padding-block: clamp(48px, 14vw, 70px);
  }

  .hero-media img {
    aspect-ratio: 122 / 100;
  }

  .btn {
    width: 100%;
  }

  .map-frame iframe {
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 540px) {
  .hero-actions {
    align-items: center;
  }

  .btn {
    min-width: 170px;
  }
}

@media (min-width: 768px) {
  :root {
    --header-offset: 76px;
  }

  .container {
    width: min(100% - 44px, 1200px);
  }

  .topbar-inner {
    min-height: 76px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  }

  .section-head {
    text-align: left;
  }

  .section-head h2 {
    margin-left: 0;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  }
}

@media (min-width: 960px) {
  :root {
    --header-offset: 68px;
  }

  .topbar {
    background:
      linear-gradient(135deg, rgba(78, 18, 15, 0.94), rgba(128, 28, 24, 0.92)),
      var(--primary);
    box-shadow: 0 8px 20px rgba(36, 20, 16, 0.1);
  }

  .topbar-inner {
    min-height: 68px;
    gap: clamp(18px, 2vw, 30px);
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand img {
    width: 42px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-backdrop {
    display: none;
  }

  .main-nav,
  .main-nav.open {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    max-width: none;
    max-height: none;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 2vw, 32px);
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .main-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(8px, 1.2vw, 18px);
  }

  .main-nav li {
    border-bottom: 0;
  }

  .main-nav ul a::after {
    content: none;
  }

  .main-nav a {
    min-height: 40px;
    padding: 8px 10px;
    justify-content: center;
    font-size: clamp(0.95rem, 1.4vw, 1.02rem);
  }

  .main-nav a:hover {
    padding-left: 10px;
  }

  .main-nav .nav-call {
    min-height: 44px;
    min-width: 160px;
    padding: 10px 22px;
    border-radius: 999px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(100% - 56px, 1200px);
  }

  .hero-copy h1 {
    max-width: 620px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1280px;
  }
}