/* ===========================================================
   Lily Garden Chinese Takeaway — design system
   Lacquer & gold, restrained modern Cantonese
   =========================================================== */

:root {
  --ink: #191516;
  --ink-soft: #241f20;
  --lacquer: #A41623;
  --lacquer-dark: #7E1019;
  --gold: #C9A869;
  --gold-soft: #E4D3AC;
  --paper: #F4EDE3;
  --paper-dim: #E9DFCF;
  --white: #FFFFFF;
  --ink-text-on-paper: #221D1D;
  --grey-on-paper: #5B5049;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 18px 40px rgba(15, 10, 8, 0.28);
  --shadow-soft: 0 10px 26px rgba(15, 10, 8, 0.14);
  --font-head: 'Cormorant', serif;
  --font-body: 'Manrope', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-text-on-paper);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; line-height: 1.1; letter-spacing: 0.01em; font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; }

/* Accessibility */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Motion system: hidden by default only once JS confirms it can animate.
   html.js gates the reveal system; without JS everything is simply visible. */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    transition: opacity 420ms var(--ease), transform 420ms var(--ease);
    transition-delay: calc(var(--reveal-i, 0) * 60ms);
  }
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Lattice pattern accent — pure CSS, no image dependency */
.lattice {
  position: relative;
}
.lattice::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(60deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 46px),
    repeating-linear-gradient(-60deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 46px);
}
.lattice--light::before { opacity: 0.08; }

.rule-gold {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 0;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--dark { color: var(--lacquer-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease); }
}
.btn--primary {
  background: var(--lacquer);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(164, 22, 35, 0.32);
}
.btn--primary:hover { background: var(--lacquer-dark); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(164, 22, 35, 0.4); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--gold:hover { background: var(--gold); color: var(--ink); }
.btn--ghost {
  background: transparent;
  border-color: rgba(244, 237, 227, 0.5);
  color: var(--paper);
}
.btn--ghost:hover { background: rgba(244, 237, 227, 0.12); border-color: var(--paper); }
.btn--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--dark:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Topbar */
.topbar {
  background: var(--ink);
  color: rgba(244, 237, 227, 0.82);
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
  gap: 12px;
}
.topbar__item a { font-weight: 700; color: var(--gold); }
.topbar__badge { display: none; letter-spacing: 0.03em; }
@media (min-width: 720px) { .topbar__badge { display: block; } }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(25, 21, 22, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 105, 0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 105, 0.5);
}
.brand__text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav {
  display: none;
  gap: 30px;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav a { color: rgba(244, 237, 227, 0.86); position: relative; padding: 6px 0; }
.nav a[aria-current="page"] { color: var(--gold); }
@media (prefers-reduced-motion: no-preference) { .nav a { transition: color 200ms ease; } }
.nav a:hover { color: var(--gold); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (prefers-reduced-motion: no-preference) { .nav a::after { transition: transform 280ms var(--ease); } }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.header__cta { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; margin-left: auto; margin-right: 28px; }
  .header__cta { display: inline-flex; }
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--paper); }
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav--mobile-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--ink);
  flex-direction: column;
  padding: 10px 24px 26px;
  gap: 2px;
  box-shadow: var(--shadow);
  border-bottom: 1px solid rgba(201,168,105,0.18);
}
.nav--mobile-open a { padding: 13px 0; border-bottom: 1px solid rgba(244,237,227,0.08); }
.nav--mobile-open a::after { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(25,21,22,0.96) 20%, rgba(25,21,22,0.82) 55%, rgba(25,21,22,0.55) 100%);
}
.hero__content { position: relative; z-index: 1; padding: 120px 24px 90px; max-width: 700px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); font-weight: 700; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 600; }
.hero__lede { font-size: 1.15rem; color: rgba(244, 237, 227, 0.82); max-width: 540px; margin-bottom: 34px; line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0; font-size: 0.86rem; color: rgba(244,237,227,0.85); font-weight: 500; padding-top: 24px; border-top: 1px solid rgba(201,168,105,0.22); }
.hero__trust li { position: relative; padding: 0 22px; display: flex; align-items: center; gap: 8px; }
.hero__trust li:first-child { padding-left: 0; }
.hero__trust li svg { flex-shrink: 0; color: var(--gold); }
.hero__trust li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 15px;
  background: rgba(201,168,105,0.3);
}

/* Hero staggered fade-up on load (no IntersectionObserver needed — always in view) */
.hero__stagger {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  html.js .hero__stagger {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 700ms var(--ease) forwards;
  }
  html.js .hero__stagger:nth-child(1) { animation-delay: 80ms; }
  html.js .hero__stagger:nth-child(2) { animation-delay: 190ms; }
  html.js .hero__stagger:nth-child(3) { animation-delay: 300ms; }
  html.js .hero__stagger:nth-child(4) { animation-delay: 410ms; }
  html.js .hero__stagger:nth-child(5) { animation-delay: 520ms; }
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}

@media (max-width: 619px) {
  .hero { min-height: auto; }
  .hero__content { padding: 84px 24px 60px; }
  .hero__lede { font-size: 1.02rem; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; margin-bottom: 30px; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: 12px; border-top: none; border-left: 2px solid var(--gold); padding-left: 16px; padding-top: 0; }
  .hero__trust li { padding: 0; }
  .hero__trust li::after { display: none; }
}

/* Sections */
.section { padding: 108px 0; scroll-margin-top: 90px; }
@media (max-width: 719px) { .section { padding: 64px 0; } }
.section--paper { background: var(--paper); color: var(--ink-text-on-paper); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--lacquer { background: var(--lacquer); color: var(--white); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600;
  margin: 0 0 18px;
}
.section__title--left { text-align: left; margin-left: 0; }
.section__head--left { text-align: left; margin-left: 0; margin-right: auto; }
.section__lede {
  color: var(--grey-on-paper);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
}
.section--dark .section__lede, .section--dark p:not(.hero__lede) { color: rgba(244,237,227,0.78); }
.section--lacquer .section__lede { color: rgba(255,255,255,0.85); }

/* Signature dishes */
.dishes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.dish-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}
@media (prefers-reduced-motion: no-preference) {
  .dish-card { transition: transform 260ms var(--ease), box-shadow 260ms var(--ease); }
}
.dish-card:hover { transform: translateY(-3px); box-shadow: 0 26px 50px rgba(15,10,8,0.36); }
.dish-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.dish-card__media img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  .dish-card__media img { transition: transform 500ms var(--ease); }
}
.dish-card:hover .dish-card__media img { transform: scale(1.03); }
.dish-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(25,21,22,0.92) 0%, rgba(25,21,22,0.1) 55%, transparent 75%);
}
.dish-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 22px 20px;
  color: var(--paper);
}
.dish-card__body h3 { font-size: 1.3rem; margin-bottom: 4px; color: var(--paper); }
.dish-card__body p { font-size: 0.86rem; color: rgba(244,237,227,0.75); }
.dish-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

/* About strip */
.about-strip { display: grid; gap: 48px; align-items: center; }
.about-strip__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-strip__media img { width: 100%; height: 100%; object-fit: cover; }
.about-strip__content p { color: rgba(244,237,227,0.8); line-height: 1.7; margin-bottom: 16px; }
.about-strip__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.about-strip__stats div {
  border: 1px solid rgba(201,168,105,0.3);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
}
.about-strip__stats strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.about-strip__stats span { display: block; font-size: 0.76rem; color: rgba(244,237,227,0.7); margin-top: 6px; letter-spacing: 0.02em; }
@media (min-width: 860px) { .about-strip { grid-template-columns: 1fr 1.1fr; } }

/* Reviews band */
.ratings-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 0 auto 48px;
  padding: 18px 30px;
  max-width: 640px;
  background: var(--white);
  border: 1px solid rgba(25,21,22,0.08);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.ratings-bar__item { display: flex; align-items: center; gap: 10px; }
.ratings-bar__badge {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: var(--lacquer);
  padding: 6px 14px;
  border-radius: 6px;
}
.ratings-bar__label { font-size: 0.94rem; color: var(--grey-on-paper); }
.ratings-bar__label strong { color: var(--ink-text-on-paper); font-family: var(--font-head); font-size: 1.05rem; }
.ratings-bar__divider { width: 1px; height: 28px; background: rgba(25,21,22,0.12); }
@media (max-width: 520px) { .ratings-bar { border-radius: 18px; flex-direction: column; } .ratings-bar__divider { width: 60px; height: 1px; } }

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
}
.review-card__stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card p { color: var(--ink-text-on-paper); line-height: 1.65; font-size: 0.98rem; font-style: italic; }
.review-card__author { margin-top: 20px; font-weight: 700; font-size: 0.88rem; color: var(--lacquer); }
.review-card__author span { color: var(--grey-on-paper); font-weight: 400; }

/* Hours / CTA band */
.hours-band {
  display: grid;
  gap: 40px;
}
.hours-card {
  background: rgba(244,237,227,0.06);
  border: 1px solid rgba(201,168,105,0.28);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.hours-card h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 20px; }
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.96rem; padding: 9px 0; border-bottom: 1px solid rgba(244,237,227,0.08); color: rgba(244,237,227,0.85); }
.hours-list li:last-child { border-bottom: none; }
.hours-list li strong { color: var(--paper); font-weight: 600; }
.hours-note { margin-top: 16px; font-size: 0.84rem; color: rgba(244,237,227,0.6); line-height: 1.6; }
.order-card { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.order-card .btn { width: 100%; }
.order-card__phones { display: flex; flex-direction: column; gap: 10px; }
.phone-line { display: flex; flex-direction: column; }
.phone-line span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 2px; }
.phone-line a { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--paper); }
@media (prefers-reduced-motion: no-preference) { .phone-line a { transition: color 200ms ease; } }
.phone-line a:hover { color: var(--gold); }
@media (min-width: 860px) { .hours-band { grid-template-columns: 1.2fr 1fr; } }

/* Footer */
.footer { background: var(--ink); color: rgba(244,237,227,0.6); padding: 48px 0 36px; border-top: 1px solid rgba(201,168,105,0.15); }
.footer__inner { display: grid; gap: 32px; }
.footer__brand .brand__text { font-size: 1.2rem; }
.footer__col h4 { color: var(--gold); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(244,237,227,0.08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.8rem; }
@media (min-width: 780px) { .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* Floating call button (mobile) */
.call-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lacquer);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 150;
}
.call-fab svg { width: 24px; height: 24px; }
@media (min-width: 900px) { .call-fab { display: none; } }

/* ===== Multi-page site additions ===== */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 150px 0 70px;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25,21,22,0.9), rgba(25,21,22,0.96)); }
.page-hero__content { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { color: rgba(244,237,227,0.78); font-size: 1.05rem; line-height: 1.65; max-width: 560px; }
.breadcrumb { font-size: 0.8rem; color: rgba(244,237,227,0.55); margin-bottom: 18px; letter-spacing: 0.03em; }
.breadcrumb a { color: var(--gold); }

/* Menu page */
.menu-nav {
  position: sticky;
  top: 65px;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid rgba(25,21,22,0.1);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.menu-nav__inner { display: flex; gap: 4px; padding: 12px 24px; }
.menu-nav a {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-text-on-paper);
  white-space: nowrap;
}
.menu-nav a:hover { background: rgba(164,22,35,0.08); color: var(--lacquer); }

.menu-category { margin-bottom: 64px; scroll-margin-top: 130px; }
.menu-category__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 26px; flex-wrap: wrap; }
.menu-category__head h2 { font-size: 1.7rem; color: var(--lacquer-dark); }
.menu-category__head .rule-gold { flex: 1; min-width: 40px; }
.menu-category__note { font-size: 0.85rem; color: var(--grey-on-paper); margin: -14px 0 22px; font-style: italic; }
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 4px; }
@media (min-width: 760px) { .menu-grid { grid-template-columns: 1fr 1fr; column-gap: 40px; } }
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(25,21,22,0.15);
}
.menu-item__name { font-weight: 600; font-size: 0.96rem; flex-shrink: 1; min-width: 0; }
.menu-item__desc { font-size: 0.82rem; color: var(--grey-on-paper); font-weight: 400; }
.menu-item__leader { flex: 1; border-bottom: 1px dotted rgba(25,21,22,0.22); margin-bottom: 5px; min-width: 0; }
.menu-item__price { font-family: var(--font-head); font-weight: 700; color: var(--lacquer); font-size: 1rem; flex-shrink: 0; }
.menu-item__tag { font-size: 0.66rem; color: var(--gold); border: 1px solid var(--gold); border-radius: 4px; padding: 1px 5px; margin-left: 4px; }

.set-menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.set-menu-card { background: var(--white); border: 1px solid rgba(25,21,22,0.08); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); }
.set-menu-card__header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.set-menu-card__header h3 { font-size: 1.15rem; color: var(--lacquer-dark); }
.set-menu-card__price { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--lacquer); }
.set-menu-card__save { display: inline-block; font-size: 0.68rem; background: var(--gold); color: var(--ink); padding: 2px 8px; border-radius: 4px; font-weight: 700; margin-bottom: 14px; }
.set-menu-card ul { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; color: var(--grey-on-paper); }

.menu-legend { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.8rem; color: var(--grey-on-paper); margin-top: 8px; }
.menu-legend span { display: inline-flex; align-items: center; gap: 6px; }

/* Gallery */
.gallery-grid {
  columns: 1;
  gap: 18px;
}
@media (min-width: 620px) { .gallery-grid { columns: 2; } }
@media (min-width: 980px) { .gallery-grid { columns: 3; } }
.gallery-grid figure {
  margin: 0 0 18px;
  break-inside: avoid;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-grid img { width: 100%; height: auto; display: block; }
@media (prefers-reduced-motion: no-preference) { .gallery-grid img { transition: transform 450ms var(--ease); } }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 16px 14px;
  background: linear-gradient(0deg, rgba(25,21,22,0.88), transparent);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 600;
}

/* Contact page */
.contact-grid { display: grid; gap: 40px; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,105,0.14);
  border: 1px solid rgba(201,168,105,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-info-item h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--paper); }
.contact-info-item p, .contact-info-item a { color: rgba(244,237,227,0.8); font-size: 0.95rem; line-height: 1.55; }
.contact-info-item a:hover { color: var(--gold); }
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,105,0.28);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: repeating-linear-gradient(135deg, rgba(201,168,105,0.06) 0 2px, transparent 2px 14px), var(--ink-soft);
  color: rgba(244,237,227,0.55);
  text-align: center;
  padding: 32px;
}
.map-placeholder svg { color: var(--gold); }
.map-placeholder strong { color: var(--paper); font-family: var(--font-head); font-size: 1.15rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

/* CTA band (multi-page) */
.cta-band { text-align: center; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 30px; }
