:root {
  --ink: #260704;
  --muted: #77564a;
  --red: #d92718;
  --red-dark: #9d1b12;
  --gold: #f4a51f;
  --gold-soft: #ffe7a3;
  --cream: #fff7df;
  --paper: #fffaf0;
  --line: rgba(110, 39, 20, 0.16);
  --shadow: rgba(82, 18, 9, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Noto Serif HK", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(244, 165, 31, 0.28), transparent 34rem),
    radial-gradient(circle at top right, rgba(217, 39, 24, 0.2), transparent 30rem),
    linear-gradient(135deg, #fff9ec 0%, #fff1d0 42%, #f8d7aa 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    linear-gradient(30deg, rgba(157, 27, 18, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(157, 27, 18, 0.08) 87.5%, rgba(157, 27, 18, 0.08)),
    linear-gradient(150deg, rgba(157, 27, 18, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(157, 27, 18, 0.08) 87.5%, rgba(157, 27, 18, 0.08));
  background-size: 48px 84px;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 16px 48px var(--shadow);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Noto Serif HK", serif;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a,
.lang-button,
.button {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--red-dark);
  background: rgba(244, 165, 31, 0.16);
}

.language-switcher {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.lang-button {
  padding: 0 12px;
  color: var(--red-dark);
  background: transparent;
  border-color: var(--line);
}

.lang-button.is-active {
  color: var(--cream);
  background: var(--red);
  border-color: var(--red);
}

main {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  --hero-panel-height: clamp(500px, 48vw, 620px);
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  min-height: calc(100vh - 88px);
  padding: clamp(78px, 13vw, 150px) 0 76px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 880px;
  min-height: var(--hero-panel-height);
}

.hero-side-photo {
  position: relative;
  height: var(--hero-panel-height);
  min-height: var(--hero-panel-height);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(157, 27, 18, 0.16);
  border-radius: 42px;
  background: var(--red-dark);
  box-shadow: 0 30px 80px var(--shadow);
}

.hero-side-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-side-photo::before {
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(255, 248, 223, 0.22), transparent 22%, transparent 56%, rgba(255, 248, 223, 0.16) 62%, transparent 68%),
    linear-gradient(180deg, transparent 50%, rgba(38, 7, 4, 0.46));
}

.hero-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-side-photo figcaption {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 231, 163, 0.34);
  border-radius: 999px;
  color: var(--cream);
  font-weight: 700;
  background: rgba(82, 18, 9, 0.8);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6.4vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 span {
  display: block;
}

.title-nowrap {
  white-space: nowrap;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.button.primary {
  color: #fff7df;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(157, 27, 18, 0.25);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--red-dark);
  background: rgba(255, 250, 240, 0.74);
  border-color: var(--line);
}

.button.large {
  min-height: 54px;
  padding: 0 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-stats div,
.menu-board,
.shop-photo,
.product-photo,
.social-card,
.contact-card,
.takeaway-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 46px rgba(82, 18, 9, 0.08);
}

.hero-stats div {
  padding: 16px;
  border-radius: 22px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 7px 0 0;
  font-weight: 700;
}

.section {
  padding: 76px 0;
  border-top: 1px solid rgba(157, 27, 18, 0.14);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.order-panel p,
.takeaway-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-note {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 16px;
}

.shop-photo,
.product-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
}

.shop-photo {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(circle at 90% 5%, rgba(244, 165, 31, 0.28), transparent 34%),
    rgba(255, 250, 240, 0.72);
}

.shop-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(38, 7, 4, 0.42)),
    radial-gradient(circle at center, transparent 48%, rgba(38, 7, 4, 0.2));
}

.shop-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 56%;
}

.product-photo figcaption {
  color: var(--muted);
  font-weight: 700;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-photo {
  display: grid;
  grid-template-columns: 148px 1fr;
  align-items: center;
  min-height: 136px;
  background: rgba(255, 250, 240, 0.82);
}

.product-photo img {
  width: 148px;
  height: 136px;
  object-fit: cover;
}

.product-photo:nth-child(1) img {
  object-position: 48% 50%;
}

.product-photo:nth-child(2) img {
  object-position: 62% 54%;
}

.product-photo:nth-child(3) img {
  object-position: 35% 58%;
}

.product-photo:nth-child(4) img {
  object-position: 42% 56%;
}

.product-photo figcaption {
  padding: 16px;
  font-family: "Noto Serif HK", serif;
  font-size: 1.2rem;
  color: var(--ink);
}

.menu-board {
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 247, 223, 0.84)),
    var(--paper);
}

.menu-board-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  color: var(--cream);
  background:
    radial-gradient(circle at 92% 20%, rgba(244, 165, 31, 0.38), transparent 32%),
    linear-gradient(135deg, var(--red), var(--red-dark));
}

.menu-board-title span {
  font-family: "Noto Serif HK", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu-board-title small {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.secondary-title {
  border-top: 1px solid rgba(157, 27, 18, 0.18);
}

.table-wrap {
  overflow-x: auto;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 250, 240, 0.9);
}

.menu-table th,
.menu-table td {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.menu-table th {
  color: var(--red-dark);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 231, 163, 0.34);
}

.menu-table td:first-child {
  width: 28%;
  font-family: "Noto Serif HK", serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.menu-table td:nth-child(2) {
  color: var(--muted);
}

.menu-table td:last-child {
  width: 160px;
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.highlight-row {
  background: rgba(244, 165, 31, 0.14);
}

.highlight-row td:first-child {
  color: var(--red-dark);
}

.highlight-row span,
.takeaway-prices a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--red);
}

.takeaway-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.takeaway-prices article {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255, 250, 240, 0.9);
}

.takeaway-prices span {
  font-family: "Noto Serif HK", serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.takeaway-prices strong {
  color: var(--red);
  font-size: 1.35rem;
}

.order-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 42px;
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 231, 163, 0.6), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.84), rgba(255, 231, 163, 0.62));
  box-shadow: 0 24px 70px rgba(82, 18, 9, 0.12);
}

.order-panel p {
  max-width: 680px;
  margin-top: 16px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.social-card {
  display: grid;
  grid-template-columns: minmax(170px, 220px) 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 96% 0, rgba(244, 165, 31, 0.26), transparent 34%),
    rgba(255, 250, 240, 0.78);
}

.social-card-head {
  display: grid;
  gap: 10px;
  grid-column: 2;
  grid-row: 1;
}

.social-card-head span {
  font-family: "Noto Serif HK", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.social-card-head a {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--red);
}

.social-card img {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: min(100%, 220px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.social-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
}

.contact-card,
.takeaway-card {
  padding: 28px;
  border-radius: 30px;
}

.contact-card ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-card li {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.08rem;
}

.takeaway-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 100% 0, rgba(244, 165, 31, 0.36), transparent 42%),
    rgba(255, 250, 240, 0.72);
}

.text-link {
  margin-top: 26px;
  color: var(--red-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid rgba(157, 27, 18, 0.14);
}

.footer p {
  margin: 0;
}

.photo-credits-link {
  flex-basis: 100%;
  width: max-content;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.credits-page {
  max-width: 900px;
  padding: 72px 0;
}

.credits-page h1 {
  margin-top: 28px;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.credits-page section {
  padding: 34px 0;
  border-top: 1px solid rgba(157, 27, 18, 0.14);
}

.credits-page p,
.credits-page li {
  color: var(--muted);
  line-height: 1.7;
}

.credits-page ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
}

.credits-page a {
  color: var(--red-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .order-panel,
  .hero,
  .social-grid,
  .contact-grid,
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    --hero-panel-height: auto;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-side-photo {
    height: auto;
    min-height: auto;
  }

  .hero-side-photo img {
    min-height: 360px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .takeaway-prices {
    grid-template-columns: 1fr;
  }

  .shop-photo img {
    min-height: auto;
  }

  .product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-photo {
    grid-template-columns: 1fr;
  }

  .product-photo img {
    width: 100%;
    height: auto;
  }

  .order-panel {
    padding: 30px;
  }

}

@media (max-width: 580px) {
  main,
  .site-header,
  .footer {
    width: min(calc(100% - 22px), var(--max));
  }

  .site-header {
    margin-top: 10px;
  }

  .brand small {
    display: none;
  }

  .nav a,
  .lang-button,
  .button {
    min-height: 38px;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .menu-board-title,
  .menu-table th,
  .menu-table td,
  .takeaway-prices article {
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu-table th:nth-child(2),
  .menu-table td:nth-child(2) {
    display: none;
  }

  .menu-table td:last-child {
    width: 128px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-photo {
    grid-template-columns: 128px 1fr;
  }

  .product-photo img {
    width: 128px;
    height: 118px;
  }

  .order-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .social-card {
    grid-template-columns: 132px 1fr;
    gap: 16px;
    padding: 16px;
  }

  .social-card img {
    width: 132px;
  }

  .social-card-head span {
    font-size: 1.28rem;
  }

  .social-card p {
    grid-column: 1 / -1;
    grid-row: auto;
    margin: 0;
  }

  .footer {
    flex-direction: column;
  }
}
