:root {
  --lacquer: #7a1515;
  --lacquer-deep: #4a0c0c;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --ivory: #fbf6eb;
  --cream: #f3e6c8;
  --teak: #2c1810;
  --ink: #1a0f0a;
  --leaf: #2d5a3d;
  --muted: #6b5344;
  --card: #fffdf8;
  --shadow: 0 12px 32px rgba(44, 24, 16, 0.12);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Padauk", "Noto Sans Myanmar", "Myanmar Text", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: "Padauk", "Cormorant Garamond", serif;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.container {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
}

.gold-bar {
  height: 6px;
  background: linear-gradient(90deg, #7a1515, #c9a227 40%, #e8c547, #c9a227 70%, #7a1515);
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--teak);
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.35);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn.outline {
  background: #fff;
  color: var(--lacquer);
  border: 1px solid var(--gold);
}

.btn.small {
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 246, 235, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lacquer);
  color: var(--gold-light);
  font-size: 1.2rem;
}

.brand strong {
  display: block;
  font-size: 1.2rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a:hover {
  color: var(--lacquer);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--teak);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("https://commons.wikimedia.org/w/index.php?title=Special:Redirect/file/Mote_Hin_Khar_soup.jpg&width=1920")
    center 40% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 15, 10, 0.25), rgba(26, 15, 10, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.25), transparent 45%);
}

.hero-content {
  position: relative;
  padding: 5rem 0 4rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  color: #fff8e7;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.lead {
  max-width: 38rem;
  font-size: 1.08rem;
  color: #f3e6c8;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.about,
.menu,
.visit {
  padding: 4.2rem 0;
}

.about {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.15), transparent 40%),
    var(--ivory);
}

.about-grid,
.visit-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.stats {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  list-style: none;
  margin: 1.5rem 0 0;
}

.stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--lacquer);
}

.about-card,
.order-form {
  background: var(--card);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, #7a1515, #4a0c0c);
  color: #fff8e7;
}

.about-card p {
  border-bottom: 1px dashed rgba(232, 197, 71, 0.35);
  padding-bottom: 0.7rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filters button {
  font: inherit;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
}

.filters button.active,
.filters button:hover {
  background: var(--lacquer);
  color: #fff;
  border-color: var(--lacquer);
}

.search-wrap input,
.order-form input,
.order-form textarea {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  background: #fff;
}

.search-wrap {
  min-width: min(280px, 100%);
}

.result-meta {
  color: var(--muted);
  margin: 0 0 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--card);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(122, 21, 21, 0.16);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8d9b8;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(122, 21, 21, 0.92);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.card-body {
  padding: 0.85rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.card h3 {
  font-size: 1.05rem;
}

.en-name {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.price {
  color: var(--lacquer);
  font-weight: 700;
  margin: 0.2rem 0 0.5rem;
}

.card-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: auto;
}

.card-actions .btn {
  flex: 1;
}

.visit {
  background: linear-gradient(180deg, #fff8e7, #f3e6c8);
}

.visit-list {
  padding: 0;
  list-style: none;
}

.visit-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.order-form {
  padding: 1.3rem;
  display: grid;
  gap: 0.7rem;
}

.order-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
}

.site-footer {
  background: var(--teak);
  color: #f3e6c8;
  text-align: center;
  padding: 1.6rem 0;
  font-size: 0.92rem;
}

.modal {
  border: 0;
  border-radius: 20px;
  padding: 0;
  width: min(640px, 94vw);
  background: var(--card);
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(26, 15, 10, 0.62);
}

.modal-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.modal-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--ivory);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  }

  .nav.open {
    display: flex;
  }

  .card-body {
    padding: 0.65rem;
  }

  .card h3 {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 70vh;
  }
}
