:root {
  --red: #8d1f1b;
  --red-dark: #55100e;
  --gold: #d8a43a;
  --cream: #fff6e3;
  --paper: #fffaf0;
  --green: #173d2e;
  --ink: #221816;
  --muted: #6f5d56;
  --shadow: 0 24px 60px rgba(58, 20, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.hero {
  min-height: 760px;
  color: #fff;
  background:
    linear-gradient(45deg, rgba(255, 246, 227, 0.07) 25%, transparent 25%) 0 0 / 26px 26px,
    radial-gradient(circle at 80% 20%, rgba(216, 164, 58, 0.45), transparent 28%),
    linear-gradient(135deg, var(--red-dark), var(--green));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.language-switch span[aria-current="page"] {
  color: var(--red-dark);
  background: var(--gold);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 10vw, 7.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

h3 {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

:lang(vi) h2,
:lang(vi) h3 {
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.hero-copy {
  max-width: 620px;
  color: #fff1d6;
  font-size: 1.35rem;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: repeat(2, 190px);
  gap: 16px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 246, 227, 0.82);
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
  object-fit: cover;
}

.hero-photo-large {
  grid-row: span 2;
}

.hero-actions,
.photos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--red-dark);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary.dark {
  color: var(--red-dark);
  border-color: rgba(85, 16, 14, 0.2);
  background: #fff;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro,
.photos {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.intro p:last-child,
.section-heading p,
.photos p {
  color: var(--muted);
  font-size: 1.1rem;
}

.menu-section {
  border-top: 1px solid rgba(85, 16, 14, 0.12);
  border-bottom: 1px solid rgba(85, 16, 14, 0.12);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 36px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-card,
.visit-card {
  padding: 30px;
  border: 1px solid rgba(85, 16, 14, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.menu-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(85, 16, 14, 0.18);
  padding-bottom: 12px;
}

.menu-card strong {
  color: var(--red);
  white-space: nowrap;
}

.photos {
  padding-bottom: 30px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 92px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(58, 20, 12, 0.14);
  object-fit: cover;
}

.photo-grid img:nth-child(6n + 1),
.photo-grid img:nth-child(6n + 4) {
  grid-column: span 2;
  grid-row: span 2;
}

.visit {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.visit-card.highlight {
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--red-dark));
}

.visit-card .large {
  margin-bottom: 0;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}

address {
  margin-bottom: 16px;
  font-style: normal;
}

.visit-card a:not(.button),
.footer a {
  color: var(--red);
  font-weight: 800;
}

.footer {
  padding: 34px 20px;
  color: #fff5df;
  background: var(--red-dark);
  text-align: center;
}

.footer p {
  margin-bottom: 6px;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .nav {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 70px 0 90px;
  }

  .hero-gallery {
    grid-template-rows: repeat(2, 160px);
  }

  .intro,
  .photos,
  .visit,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 62px;
  }

  .section {
    padding: 62px 0;
  }
}

@media (max-width: 520px) {
  .nav,
  .section,
  .photo-grid,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hero-photo,
  .hero-photo-large {
    grid-row: auto;
    height: 240px;
  }

  .photo-grid img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .menu-card,
  .visit-card {
    padding: 24px;
    border-radius: 22px;
  }
}
