/* Út Cà Mau — restored stylesheet */

:root {
  --red: #d5271f;
  --red-dark: #a81c16;
  --green: #4fa72a;
  --gold: #f0b429;
  --ink: #1e1e1e;
  --muted: #7a7a7a;
  --line: #e6e6e6;
  --dark: #141414;
  --wrap: 1160px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: #fff;
}

h1, h2, h3 { margin: 0; line-height: 1.25; }
p, ul { margin: 0; padding: 0; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }

:where(a, button):focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }
.center { text-align: center; }

.btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  transition: background .3s ease;
}
.btn:hover { background: var(--red-dark); color: #fff; text-decoration: none; }
.btn--lg { padding: 14px 38px; font-size: 18px; }

.section { padding: 60px 0; }
.section-title {
  margin-bottom: 28px;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: var(--red);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 3px solid var(--red);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px 26px;
  min-height: 78px;
}
.brand { flex: none; }
.brand img { width: 150px; height: auto; }

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; flex-wrap: wrap; }
.primary-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}
.primary-nav a:hover { color: var(--red); text-decoration: none; }

.header-cta { flex: none; }

.nav-toggle {
  display: none;
  position: relative;
  order: 3;
  margin-left: auto;
  width: 46px; height: 40px;
  padding: 0;
  background: var(--red);
  border: 0; border-radius: 6px;
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  position: absolute; left: 50%;
  width: 22px; height: 2px; margin-left: -11px;
  background: #fff; content: "";
}
.nav-toggle__bars { top: 19px; }
.nav-toggle__bars::before { top: -7px; left: 0; margin-left: 0; }
.nav-toggle__bars::after { top: 7px; left: 0; margin-left: 0; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: #0d2b3a;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.6));
  content: "";
}
.hero__inner { position: relative; z-index: 2; text-align: center; color: #fff; }
.hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0,0,0,.6);
}
.hero__sub {
  margin: 14px 0 6px;
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.hero__hours { margin-bottom: 22px; font-size: 17px; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- about ---------- */

.lead { text-align: center; font-size: 18px; color: var(--muted); margin-bottom: 26px; }
.about__banner { margin: 0 0 30px; }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.features > * { min-width: 0; }
.features li {
  padding: 18px 12px;
  background: var(--red);
  border-radius: 8px;
  text-align: center;
}
.features h3 { font-size: 16px; color: #fff; text-transform: uppercase; }

.about__text p + p { margin-top: 14px; }

/* ---------- gallery ---------- */

.gallery { background: #faf7f2; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__grid > * { min-width: 0; }
.gallery__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* ---------- dishes ---------- */

.dishes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.dishes > * { min-width: 0; }
.dish { position: relative; text-align: center; }
.dish img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}
.dish__off {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  border-radius: 999px;
}
.dish h3 { margin-top: 12px; font-size: 17px; text-transform: uppercase; }

/* ---------- menu ---------- */

.menu { background: var(--dark); color: #eee; }
.menu .section-title { color: var(--gold); }

.menu__covers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 20px;
  justify-content: center;
  margin-bottom: 28px;
}
.menu__pages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.menu__pages > * { min-width: 0; }
.menu__covers img, .menu__pages img { width: 100%; border-radius: 6px; }

.delivery {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 22px 26px;
  background: rgba(255, 255, 255, .07);
  border-radius: 10px;
}
.delivery h3 { margin-bottom: 10px; color: var(--gold); text-transform: uppercase; font-size: 18px; }
.delivery li { padding: 5px 0; }

/* ---------- partners ---------- */

.partners__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px 46px;
}
.partners__list img { width: auto; max-height: 60px; opacity: .8; }

/* ---------- footer ---------- */

.site-footer {
  padding: 46px 0 20px;
  background: var(--dark);
  color: #c9c9c9;
  font-size: 15px;
}
.site-footer h2 { margin-bottom: 12px; font-size: 19px; color: var(--gold); text-transform: uppercase; }
.site-footer a { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 34px;
}
.footer__grid > * { min-width: 0; }
.footer__info li { padding: 4px 0; }
.footer__badge { max-width: 240px; margin-top: 18px; }

.legal, .copyright {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.legal { margin-top: 30px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.15); }
.copyright { margin-top: 8px; }

/* ---------- scroll top ---------- */

.scroll-top {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 60;
  width: 44px; height: 44px;
  padding: 0;
  background: var(--red);
  border: 0; border-radius: 50%;
  cursor: pointer;
}
.scroll-top svg { width: 26px; height: 26px; margin: 0 auto; fill: #fff; }

/* ---------- responsive ---------- */

@media (max-width: 991px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .dishes, .menu__pages { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .section { padding: 40px 0; }
  .section-title { font-size: 24px; }

  .nav-toggle { display: block; }
  .primary-nav { display: none; order: 4; width: 100%; margin-left: 0; padding-bottom: 8px; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: block; }
  .primary-nav li + li { border-top: 1px solid var(--line); }
  .header-cta { order: 2; }
  .brand img { width: 118px; }

  .hero { min-height: 380px; }
  .dishes, .menu__pages { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery__grid, .features { grid-template-columns: minmax(0, 1fr); }
  .menu__covers { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}
