/* Empress Palace — base styles */

:root {
  --red: #A52A2A;
  --red-deep: #6B1818;
  --red-light: #C44545;
  --gold: #C9A961;
  --gold-deep: #9C7B2E;
  --parchment: #FBF6EC;
  --parchment-warm: #F4ECDB;
  --ink: #2A1810;
  --ink-soft: #5A4A3D;
  --rule: #E8DCC4;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ——— Layout ——— */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ——— Top bar (announcement) ——— */
.topbar {
  background: var(--red-deep);
  color: var(--gold);
  font-size: 14px;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.04em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar .cn { font-size: 14px; opacity: 0.85; margin: 0 4px; }
.topbar .topbar-sep { opacity: 0.6; }
.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 2px;
  box-shadow: 0 0 0 0 rgba(74, 167, 90, 0.6);
}
.status-dot.open {
  background: #4AA75A;
  animation: status-pulse 2.4s infinite;
}
.status-dot.closed {
  background: #D44545;
  box-shadow: none;
}
@keyframes status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 167, 90, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 167, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 167, 90, 0); }
}

/* ——— Header / Nav ——— */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 48px; height: 48px;
  background: var(--red);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 4px;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 2px;
  pointer-events: none;
}
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--red-deep);
  line-height: 1;
}
.logo-text .cn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.nav { display: flex; gap: 36px; }
.nav a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}
.nav a:hover { border-color: var(--red); text-decoration: none; }
.nav a.active { border-color: var(--red); color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-deep); }
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold-deep);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 8px 14px;
}
.btn-ghost:hover { color: var(--red); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 18px; }

/* ——— Hero ——— */
.hero {
  position: relative;
  background: var(--parchment-warm);
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 68px;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--red-deep);
}
.hero .cn-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}
.hero p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-image {
  aspect-ratio: 5/4;
  background: var(--parchment-warm);
  border-radius: 4px;
  position: relative;
  border: 6px solid var(--white);
  box-shadow: 0 0 0 1px var(--gold), 0 24px 60px rgba(107, 24, 24, 0.25);
  overflow: hidden;
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ——— Hero carousel ——— */
.hero-carousel { cursor: default; }
.hero-carousel-slide {
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  z-index: 1;
}
.hero-carousel-slide.is-active { opacity: 1; z-index: 2; }

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.7);
  background: rgba(20, 14, 14, 0.55);
  color: #f6e7c1;
  font-size: 28px;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, background 200ms ease, transform 200ms ease;
  padding: 0 0 4px 0;
}
.hero-carousel-arrow-left { left: 14px; }
.hero-carousel-arrow-right { right: 14px; }
.hero-carousel.is-hover .hero-carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}
.hero-carousel-arrow:hover {
  background: rgba(107, 24, 24, 0.92);
  transform: translateY(-50%) scale(1.06);
}
.hero-carousel-arrow:focus-visible {
  outline: 2px solid #c9a961;
  outline-offset: 2px;
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}
.hero-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 14, 14, 0.4);
  transition: background 200ms ease, transform 200ms ease;
}
.hero-carousel-dot.is-active {
  background: #c9a961;
  transform: scale(1.25);
}
.hero-image-seal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  background: rgba(107, 24, 24, 0.92);
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.hero-image-seal::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 2px;
}

/* ——— Section header ——— */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--ink); color: var(--parchment); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 48px;
  color: var(--red-deep);
  margin-bottom: 8px;
}
.section-header .cn-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
}
.section-header .rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ——— Quick actions row ——— */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quick-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.quick-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(107, 24, 24, 0.08);
}
.quick-card .icon {
  width: 56px; height: 56px;
  background: var(--parchment-warm);
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--red);
}
.quick-card h4 {
  font-size: 20px;
  color: var(--red-deep);
  margin-bottom: 4px;
}
.quick-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* ——— Menu ——— */
.menu-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.menu-nav {
  position: sticky;
  top: 88px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 20px 0;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.menu-search {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 16px 14px;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  padding: 0 10px;
  transition: border-color 0.15s;
}
.menu-search:focus-within { border-color: var(--gold-deep); }
.menu-search-spark {
  color: var(--gold-deep);
  font-size: 13px;
  flex-shrink: 0;
}
.menu-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.menu-search-input::placeholder { color: var(--ink-soft); opacity: 0.7; }
.menu-search-status {
  font-size: 12px;
  color: var(--gold-deep);
  font-family: 'Cormorant Garamond', serif;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-search-clear {
  background: none;
  border: none;
  font-size: 16px;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.menu-search-clear:hover { color: var(--red); }

.bilingual-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 16px 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  user-select: none;
}
.bilingual-toggle input { display: none; }
.bilingual-switch {
  width: 32px;
  height: 18px;
  background: var(--rule);
  border-radius: 9px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.bilingual-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.bilingual-toggle input:checked + .bilingual-switch {
  background: var(--red);
}
.bilingual-toggle input:checked + .bilingual-switch::after {
  transform: translateX(14px);
}
.bilingual-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.bilingual-toggle input:checked ~ .bilingual-label {
  color: var(--red-deep);
  font-weight: 600;
}
.cat-cn {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold-deep);
  margin-top: 1px;
  letter-spacing: 0.1em;
}
.menu-search-summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.menu-search-summary strong { color: var(--red-deep); font-size: 22px; font-family: 'Playfair Display', serif; }
.menu-empty {
  padding: 60px 20px;
  text-align: center;
}
.menu-section-cn {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-deep);
  font-size: 18px;
  letter-spacing: 0.15em;
  margin-left: 12px;
  font-weight: 400;
}
.menu-item-cn {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-deep);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.menu-nav h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 24px 12px;
  border-bottom: 1px solid var(--rule);
  margin: 0 0 8px;
}
.menu-nav ul { list-style: none; padding: 0; margin: 0; }
.menu-nav li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ink);
  border-left: 3px solid transparent;
  transition: all 0.15s;
  line-height: 1.3;
}
.cat-count {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 5px;
  margin-left: 6px;
}
.menu-nav li a:hover {
  color: var(--red);
  text-decoration: none;
  background: var(--parchment);
}
.menu-nav li a.active {
  color: var(--red-deep);
  border-left-color: var(--red);
  font-weight: 600;
  background: var(--parchment-warm);
}

.menu-section { scroll-margin-top: 88px; }
.menu-section + .menu-section { margin-top: 56px; }
.menu-section-header {
  border-top: 2px solid var(--red);
  padding-top: 24px;
  margin-bottom: 28px;
}
.menu-section-header h3 {
  font-family: 'Playfair Display', serif;
  color: var(--red);
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
.menu-section-header .subtitle {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink-soft);
  font-size: 16px;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.menu-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 18px 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 96px;
}
.menu-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(107, 24, 24, 0.06);
}
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--red-deep);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 1px;
}
.menu-item-desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
  margin: 4px 0 0;
}
.menu-item-foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.tags { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  background: var(--white);
}
.tag.signature { color: var(--gold-deep); border-color: var(--gold); background: rgba(201,169,97,0.08); }
.tag.spicy { color: var(--red); border-color: var(--red); }
.tag.popular { color: var(--red-deep); border-color: var(--red-deep); background: rgba(165,42,42,0.05); }
.tag.vegetarian { color: #4a7a3a; border-color: #b5d4a3; }
.tag.mild { color: var(--ink-soft); }
.tag.cold { color: #4a6a8a; border-color: #b5c4d4; }

.add-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  border: 1px solid var(--red);
  background: var(--white);
  border-radius: 3px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.add-btn:hover { background: var(--red); color: var(--white); }
.add-btn.added {
  background: #4AA75A;
  border-color: #4AA75A;
  color: var(--white);
  pointer-events: none;
}

/* ——— Hours + Map ——— */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: stretch;
}
.hours-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 36px;
  position: relative;
}
.hours-card::before, .hours-card::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--gold);
}
.hours-card::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.hours-card::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.hours-card h3 {
  font-size: 28px;
  color: var(--red-deep);
  margin-bottom: 4px;
}
.hours-card .cn-sub { font-family: 'Cormorant Garamond', serif; color: var(--gold-deep); margin-bottom: 24px; letter-spacing: 0.15em; }

.hours-list { list-style: none; padding: 0; margin: 0 0 24px; }
.hours-list li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dotted var(--rule);
  font-size: 16px;
}
.hours-list li::before {
  content: '';
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
}
.hours-list li.today {
  font-weight: 600;
  color: var(--red);
}
.hours-list li.today::before { content: '●'; }

.contact-block {
  border-top: 1px solid var(--gold);
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.7;
}
.contact-block strong { font-family: 'Playfair Display', serif; color: var(--red-deep); display: block; margin-bottom: 4px; font-size: 18px; }

/* "Need help? Call us" CTA inside hours card */
.help-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--parchment-warm);
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.18s;
}
.help-call:hover {
  background: var(--red);
  border-color: var(--red-deep);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(107, 24, 24, 0.18);
}
.help-call:hover .help-call-icon,
.help-call:hover .help-call-eyebrow,
.help-call:hover .help-call-number { color: var(--white); }
.help-call:hover .help-call-icon { background: var(--gold); color: var(--red-deep); }
.help-call-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.help-call-body { line-height: 1.3; }
.help-call-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
  transition: color 0.18s;
}
.help-call-number {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--red-deep);
  letter-spacing: 0.01em;
  margin-top: 2px;
  transition: color 0.18s;
}

.map-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.map-canvas {
  flex: 1;
  background: #E8E4D8;
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.map-foot {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
}

/* ——— About ——— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  aspect-ratio: 5/6;
  background: var(--parchment-warm);
  border: 1px solid var(--gold);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-text h2 {
  font-size: 44px;
  color: var(--red-deep);
  margin-bottom: 8px;
}
.about-text .cn-sub {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  font-size: 20px;
  margin-bottom: 24px;
}
.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px;
}
.about-sig {
  margin-top: 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
}

/* ——— Honeypot (anti-bot) — hidden from humans, visible to bots ——— */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ——— Paused-ordering banner (set via /staff control panel) ——— */
.ordering-paused-banner {
  background: #fdecec;
  border-top: 1px solid #c44545;
  border-bottom: 1px solid #c44545;
  color: #6B1818;
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.4;
  position: relative;
  z-index: 50;
}
.ordering-paused-banner strong {
  font-family: 'Playfair Display', serif;
  margin-right: 6px;
  letter-spacing: 0.02em;
}
.ordering-paused-banner a {
  color: #6B1818;
  text-decoration: underline;
  font-weight: 600;
}

/* ——— Closed-restaurant notice ——— */
.closed-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fdecec;
  border: 1px solid #c44545;
  border-left: 3px solid var(--red-deep);
  border-radius: 4px;
  padding: 14px;
  margin-top: 12px;
}
.closed-notice-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.closed-notice-title {
  display: block;
  color: var(--red-deep);
  font-family: 'Playfair Display', serif;
  font-size: 14.5px;
  margin-bottom: 3px;
}
.closed-notice-msg {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ——— Pickup time options ——— */
.pickup-time-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pickup-time-opt {
  background: var(--parchment);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  font-family: inherit;
}
.pickup-time-opt:hover { border-color: var(--gold); }
.pickup-time-opt.active {
  border-color: var(--red-deep);
  background: var(--parchment-warm);
  box-shadow: inset 0 0 0 1px var(--red-deep);
}
.pickup-time-opt-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--ink);
}
.pickup-time-opt.active .pickup-time-opt-title { color: var(--red-deep); }
.pickup-time-opt-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* ——— ASAP callback notice ——— */
.asap-callback-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff7ec;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 14px;
  margin-top: 12px;
  animation: asap-pop 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: top center;
}
.asap-callback-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red-deep);
}
.asap-callback-body { flex: 1; }
.asap-callback-title {
  display: block;
  color: var(--red-deep);
  font-family: 'Playfair Display', serif;
  font-size: 14.5px;
  margin-bottom: 3px;
}
.asap-callback-msg {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
@keyframes asap-pop {
  0% { opacity: 0; transform: translateY(-4px) scaleY(0.96); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}

/* ——— Pay in person notice ——— */
.pay-in-person-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--parchment-warm);
  border: 1px solid var(--gold);
  border-left: 3px solid var(--red-deep);
  border-radius: 4px;
  padding: 16px;
  margin-top: 8px;
}
.pay-in-person-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--parchment);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif SC', 'Playfair Display', serif;
  font-size: 18px;
  color: var(--red-deep);
}
.pay-in-person-body { flex: 1; }
.pay-in-person-title {
  display: block;
  color: var(--red-deep);
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  margin-bottom: 4px;
}
.pay-in-person-msg {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ——— Occasions ——— */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.occasion-card {
  background: var(--parchment);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px 18px;
  text-align: center;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.occasion-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 220ms ease;
  pointer-events: none;
}
.occasion-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(120, 30, 30, 0.08);
}
.occasion-card:hover::before {
  border-color: var(--gold);
}
.occasion-icon {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--red-deep);
  line-height: 1;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--parchment-warm);
}
.occasion-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.occasion-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.reviews-arrow-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 56px auto 0;
  text-decoration: none;
  color: var(--red-deep);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  transition: color 200ms ease;
  width: fit-content;
}
.reviews-arrow-cta:hover {
  color: var(--gold-deep);
}
.reviews-arrow-text {
  position: relative;
}
.reviews-arrow-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}
.reviews-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--parchment);
  animation: arrow-bounce 1.8s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 980px) {
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .occasions-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Reviews ——— */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}
.review-card {
  background: var(--parchment);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px;
  position: relative;
}
.review-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  position: absolute;
  top: 12px;
  right: 24px;
  font-weight: 700;
}
.review-stars { color: var(--gold-deep); margin-bottom: 12px; letter-spacing: 4px; font-size: 18px; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}
.review-meta strong { color: var(--red-deep); font-family: 'Playfair Display', serif; font-weight: 600; font-size: 15px; }

/* ——— Google reviews CTA ——— */
.reviews-cta {
  margin-top: 36px;
  text-align: center;
}
.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.google-reviews-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(107, 24, 24, 0.1);
  transform: translateY(-1px);
  text-decoration: none;
}
.google-reviews-btn .arrow {
  color: var(--ink-soft);
  font-size: 14px;
  margin-left: 2px;
}
.reviews-cta-note {
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ——— Footer ——— */
.footer {
  background: var(--ink);
  color: var(--parchment);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer h5 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a { color: var(--parchment); opacity: 0.8; }
.footer a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,169,97,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.6;
}

/* ——— Lunar New Year banner ——— */
.lny-banner {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%);
  color: var(--gold);
  padding: 28px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 500ms ease, color 500ms ease;
}
.lny-banner.newyear { background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%); color: var(--gold); }
.lny-banner.jade { background: linear-gradient(135deg, #1f5f4a 0%, #2f7a5f 100%); color: #fff4cf; }
.lny-banner.ink { background: linear-gradient(135deg, #221713 0%, #4b3429 100%); color: #d8b765; }
.lny-banner.plum { background: linear-gradient(135deg, #5c1f3e 0%, #84315f 100%); color: #fff0d5; }
.lny-banner.porcelain { background: linear-gradient(135deg, #21496b 0%, #eaf1f5 100%); color: #fff; }
.lny-banner.amber { background: linear-gradient(135deg, #b37a17 0%, #f0cf77 100%); color: #2a1810; }
.lny-banner::before, .lny-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.lny-banner::before { left: 40px; }
.lny-banner::after { right: 40px; }
.lny-slide {
  animation: lny-slide-in 650ms ease both;
}
.lny-banner .title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
}
.lny-banner .cn { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-left: 12px; letter-spacing: 0.15em; }
@keyframes lny-slide-in {
  from { opacity: 0; transform: translateX(44px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ——— Cart drawer ——— */
.cart-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 14px 22px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-fab .badge {
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.call-fab {
  display: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 24, 16, 0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh; /* iOS Safari: keep the footer above the browser toolbar */
  background: var(--parchment);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-head h3 { font-size: 24px; color: var(--red-deep); }
.drawer-close { font-size: 28px; color: var(--ink-soft); padding: 4px 10px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.drawer-foot { padding: 24px 28px; border-top: 1px solid var(--rule); background: var(--white); }

.delivery-partners { display: flex; flex-direction: column; gap: 10px; }
.delivery-partner-btn {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  column-gap: 14px;
  padding: 12px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: all 0.15s;
}
.delivery-partner-btn:hover {
  border-color: var(--red);
  background: var(--parchment);
  text-decoration: none;
}
.delivery-partner-logo {
  width: 46px;
  height: 46px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  justify-self: center;
  background: var(--white);
}
.delivery-partner-logo img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
.delivery-partner-name { flex: 1; }
.delivery-partner-arrow { color: var(--ink-soft); font-size: 16px; }
.delivery-partner-btn:hover .delivery-partner-arrow { color: var(--red); }

/* — Delivery info panel (when delivery toggle is selected) — */
.delivery-info { padding: 8px 0 12px; }
.delivery-info-seal {
  width: 64px; height: 64px;
  border: 2px solid var(--gold);
  margin: 0 auto 16px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold-deep);
  font-size: 28px;
}
.delivery-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--red-deep);
  text-align: center;
  margin: 0 0 8px;
}
.delivery-info-msg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
  margin: 0 0 18px;
}
.delivery-info-note {
  margin-top: 16px;
  padding: 10px 12px;
  background: var(--parchment-warm);
  border-left: 3px solid var(--gold);
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.45;
  border-radius: 2px;
}

/* — Cart "Remove all" row — */
.cart-clear-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4px;
}
.cart-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.cart-clear-btn {
  background: none;
  border: none;
  padding: 4px 0;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
}
.cart-clear-btn:hover { color: var(--red); text-decoration: underline; }

.fulfillment-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--parchment-warm);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 4px;
  margin-bottom: 20px;
}
.fulfillment-toggle button {
  padding: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  border-radius: 3px;
  color: var(--ink-soft);
}
.fulfillment-toggle button.active {
  background: var(--red);
  color: var(--white);
}

.cart-line {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--rule);
  align-items: flex-start;
}
.cart-line-marker {
  width: 6px;
  align-self: stretch;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.cart-line-body { flex: 1; }
.cart-line-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.cart-line-price { color: var(--red-deep); font-weight: 600; font-size: 15px; }
.qty-ctrl { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-ctrl button {
  width: 26px; height: 26px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  font-size: 16px;
  color: var(--ink);
}
.qty-ctrl button:hover { border-color: var(--red); color: var(--red); }
.cart-remove {
  font-size: 13px;
  color: var(--ink-soft);
  margin-left: 12px;
  width: auto !important;
  height: auto !important;
  border: none !important;
  padding: 4px 0 !important;
  background: none !important;
  border-radius: 0 !important;
}
.cart-remove:hover {
  color: var(--red) !important;
  border: none !important;
  background: none !important;
  text-decoration: underline;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}
.cart-empty .seal {
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  margin: 0 auto 16px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold-deep);
  font-size: 32px;
}

.totals-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 15px; }
.totals-row.total {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--red-deep);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.field-label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--red-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
}
.field:focus { outline: 1px solid var(--gold); border-color: var(--gold); }

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.time-slot {
  padding: 10px;
  border: 1px solid var(--rule);
  background: var(--white);
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
.time-slot.active { background: var(--red); color: var(--white); border-color: var(--red); }
.time-slot:hover:not(.active) { border-color: var(--red); color: var(--red); }

/* Tip selector */
.tip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.tip-opt {
  padding: 12px 6px;
  border: 1px solid var(--rule);
  background: var(--white);
  border-radius: 3px;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--ink);
}
.tip-opt .tip-amount {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.tip-opt.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.tip-opt.active .tip-amount { color: var(--gold); }
.tip-opt:hover:not(.active) { border-color: var(--red); color: var(--red); }
.tip-custom {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tip-custom span { font-family: 'Cormorant Garamond', serif; color: var(--ink-soft); font-size: 14px; white-space: nowrap; }
.tip-custom input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  font-family: inherit;
  font-size: 14px;
}

/* ——— AI matcher modal ——— */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 24, 16, 0.6);
  z-index: 200;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--parchment);
  border: 1px solid var(--gold);
  border-radius: 6px;
  width: 640px;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 64px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.modal::before, .modal::after, .modal > .corner-tl, .modal > .corner-br {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.modal::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.modal::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.modal-head {
  padding: 24px 32px 16px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.modal-head .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold-deep);
}
.modal-head h3 { font-size: 30px; color: var(--red-deep); margin: 4px 0; }
.modal-head .cn-sub { font-family: 'Cormorant Garamond', serif; color: var(--gold-deep); letter-spacing: 0.2em; font-size: 16px; }
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 24px;
  color: var(--ink-soft);
  padding: 4px 10px;
}
.modal form { display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: hidden; }
.modal-body { flex: 1 1 auto; overflow-y: auto; padding: 24px 32px; min-height: 0; }
.modal-foot { padding: 16px 32px; border-top: 1px solid var(--rule); background: var(--white); flex-shrink: 0; }

.chat-bubble {
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 12px;
  max-width: 85%;
  line-height: 1.5;
  font-size: 16px;
}
.chat-bubble.host {
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--ink);
  border-left: 3px solid var(--gold);
}
.chat-bubble.guest {
  background: var(--red);
  color: var(--white);
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}
.chat-bubble.thinking { font-style: italic; opacity: 0.7; }

.suggestion-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 12px 16px;
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.suggestion-card .name { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--red-deep); }
.suggestion-card .desc { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

.ai-input-row { display: flex; gap: 8px; }
.ai-input-row .field { flex: 1; }

.ai-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--parchment-warm);
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  border-radius: 50px;
  padding: 8px 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  z-index: 60;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-fab:hover { background: var(--white); color: var(--red); border-color: var(--red); }
.ai-fab .pulse {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(165,42,42,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(165,42,42,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(165,42,42,0); }
}

/* ——— Checkout success ——— */
.success-screen {
  text-align: center;
  padding: 40px 20px;
}
.success-seal {
  width: 100px; height: 100px;
  border: 2px solid var(--gold);
  background: var(--red);
  color: var(--gold);
  margin: 0 auto 20px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
}
.success-screen h3 { font-size: 32px; color: var(--red-deep); margin-bottom: 8px; }
.success-screen .cn-sub { font-family: 'Cormorant Garamond', serif; color: var(--gold-deep); letter-spacing: 0.2em; margin-bottom: 24px; }

/* ——— Large party callout ——— */
.large-party-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--parchment-warm);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 14px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.4s ease, padding 0.4s ease, border-width 0.4s ease;
}
.large-party-callout.visible {
  max-height: 120px;
  opacity: 1;
  margin-top: 14px;
  padding: 12px 14px;
  border-width: 1px;
}
.custom-time-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: auto;
  min-width: 0;
  margin-top: 8px;
  background: var(--parchment-warm);
  border: 1px solid var(--gold);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--red-deep);
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.02em;
  transition: all 0.15s;
}
.custom-time-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.quick-date-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.quick-date-btn {
  background: var(--parchment-warm);
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 9px;
  transition: all 0.15s;
}
.quick-date-btn:hover,
.quick-date-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.booking-time-field {
  padding-top: 36px;
}

.large-party-icon { font-size: 22px; flex-shrink: 0; }
.large-party-text { font-size: 13px; color: var(--ink-soft); line-height: 1.4; margin-bottom: 4px; }
.large-party-phone {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--red-deep);
  text-decoration: none;
}
.large-party-phone:hover { text-decoration: underline; }

/* ——— Late booking callout ——— */
.late-booking-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #F5F0E8;
  border: 1px solid var(--gold-deep);
  border-radius: 6px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.4s ease, padding 0.4s ease, border-width 0.4s ease;
}
.late-booking-callout.visible {
  max-height: 160px;
  opacity: 1;
  margin-top: 14px;
  padding: 12px 14px;
  border-width: 1px;
}
.late-confirm-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 500;
}
.late-confirm-label input[type="checkbox"] {
  accent-color: var(--red-deep);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  cursor: pointer;
}

/* ——— Filter chips ——— */
.header-actions { display: flex; align-items: center; gap: 12px; }

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.filter-chip {
  padding: 7px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 999px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-chip:hover { border-color: var(--red); color: var(--red); }
.filter-chip.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.smart-filter {
  margin-bottom: 28px;
}
.smart-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  padding: 0 12px;
  transition: border-color 0.15s;
}
.smart-filter-row:focus-within { border-color: var(--gold-deep); }
.smart-filter-spark {
  color: var(--gold-deep);
  font-size: 13px;
  flex-shrink: 0;
}
.smart-filter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--ink);
  outline: none;
}
.smart-filter-input::placeholder { color: var(--ink-soft); opacity: 0.7; }
.smart-filter-status { font-size: 13px; color: var(--gold-deep); font-family: 'Cormorant Garamond', serif; white-space: nowrap; }
.smart-filter-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.smart-filter-clear:hover { color: var(--red); }

/* ——— Hamburger + mobile nav ——— */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: sticky;
  top: 57px;
  z-index: 49;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 12px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .hero-grid, .info-grid, .about-grid, .reviews-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-layout { grid-template-columns: 1fr; gap: 24px; }
  .menu-nav { position: relative; top: 0; max-height: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .quick-actions { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }
  .call-fab {
    position: fixed;
    right: 24px;
    bottom: 86px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    min-height: 46px;
    padding: 12px 18px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    color: var(--red-deep);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }
  .call-fab:hover {
    background: var(--parchment-warm);
    text-decoration: none;
  }
}
@media (max-width: 640px) {
  .booking-time-field {
    padding-top: 0;
  }
}

/* ——— Phone polish (iPhone & small screens) ——— */
@media (max-width: 720px) {
  /* iOS zooms the page when a focused input is under 16px — keep all
     form fields at 16px so tapping a field never zooms the layout. */
  .field,
  .menu-search-input,
  .smart-filter-input {
    font-size: 16px;
  }

  /* Tighter rhythm on small screens */
  .container { padding: 0 20px; }
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 32px; }
  .section-header .cn-sub { font-size: 18px; }
  .header-inner { padding: 14px 20px; }
  .logo-mark { width: 42px; height: 42px; font-size: 19px; }
  .logo-text .name { font-size: 19px; }

  /* Hero */
  .hero { padding: 36px 0 52px; }
  .hero-grid { padding: 0 20px; gap: 28px; }
  .hero h1 { font-size: 40px; }
  .hero .cn-title { font-size: 24px; margin-bottom: 20px; }
  .hero p.lead { font-size: 19px; margin-bottom: 24px; }
  .hero-cta .btn-lg { padding: 14px 22px; font-size: 16px; }
  /* Arrows are hover-revealed on desktop; on touch screens show them always */
  .hero-carousel .hero-carousel-arrow { opacity: 1; pointer-events: auto; width: 38px; height: 38px; }

  /* Top bar: keep it to one tidy line */
  .topbar { font-size: 13.5px; padding: 7px 12px; gap: 6px; }
  .topbar .cn, .topbar .topbar-extra { display: none; }

  /* LNY banner */
  .lny-banner { padding: 18px 0; }
  .lny-banner .title { font-size: 19px; line-height: 1.3; }
  .lny-banner .cn { display: block; margin-left: 0; margin-top: 2px; font-size: 17px; }
  .lny-banner::before, .lny-banner::after { display: none; }

  /* Quick action cards */
  .quick-actions { gap: 12px; }
  .quick-card { padding: 20px 14px; }
  .quick-card .icon { width: 48px; height: 48px; margin-bottom: 12px; }
  .quick-card h4 { font-size: 17px; }
  .quick-card p { font-size: 13px; }

  /* Menu: category list becomes a horizontal scroller instead of a tall
     full-width column pushing the dishes below the fold */
  .menu-nav { padding: 14px 0 10px; }
  .menu-nav h4 { display: none; }
  .menu-nav ul {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px;
    padding: 0 12px 6px;
  }
  .menu-nav ul::-webkit-scrollbar { display: none; }
  .menu-nav li { flex-shrink: 0; }
  .menu-nav li a {
    border-left: none;
    border: 1.5px solid var(--rule);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 16px;
    white-space: nowrap;
    align-items: center;
    gap: 6px;
  }
  .menu-nav li a.active {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
  }
  .menu-nav li a.active .cat-cn { color: rgba(255, 255, 255, 0.85); }
  .menu-nav li a .cat-cn { display: inline; margin-top: 0; margin-left: 6px; }
  .menu-nav li a .cat-count { display: none; }
  .menu-search { margin: 0 12px 12px; }
  .menu-section { scroll-margin-top: 72px; }
  .menu-section-header h3 { font-size: 24px; }
  .menu-section-cn { font-size: 15px; margin-left: 8px; }

  /* Drawer & modal interiors */
  .drawer-head { padding: 18px 20px; }
  .drawer-body { padding: 18px 20px; }
  .drawer-foot { padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); }
  .modal-head { padding: 20px 20px 14px; }
  .modal-body { padding: 18px 20px; }
  .modal-foot { padding: 14px 20px calc(14px + env(safe-area-inset-bottom)); }
  .modal { max-height: calc(100dvh - 24px); max-width: calc(100vw - 20px); }
  .modal-head h3 { font-size: 25px; }

  /* Floating buttons: respect the iPhone home indicator */
  .cart-fab {
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: 16px;
    padding: 13px 18px;
  }
  .call-fab {
    right: 16px;
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
  .ai-fab {
    left: 16px;
    bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .toast-stack {
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: calc(100vw - 24px);
  }
  .toast { min-width: 0; width: 100%; max-width: 420px; }

  /* Reviews & footer */
  .reviews-grid { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Forms: date+time side-by-side is too cramped on narrow phones */
  .booking-datetime-row { grid-template-columns: 1fr !important; }
}
