:root {
  --bg: #0b0807;
  --surface: #14100e;
  --elevated: #1c1714;
  --fg: #f4ece4;
  --muted: #d4c5b6;
  --chili: #d94b3c;
  --chili-fg: #fff8f4;
  --cream: #f3ebe1;
  --ink: #1a1412;
  --line: #6a5e54;
  --focus: #ffe08a;
  --ok: #3dba7a;
  --font-sans: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-zh: "Noto Serif SC", "Playfair Display", serif;
  --max: 70rem;
  --pad: clamp(1.25rem, 4vw, 2rem);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cream); }
a:hover { color: var(--fg); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
}
p { text-wrap: pretty; }
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: var(--pad); top: 0.5rem; z-index: 100;
  background: var(--cream); color: var(--ink); padding: 0.65rem 1rem;
  font-weight: 600; text-decoration: none; transform: translateY(-150%);
}
.skip:focus, .skip:focus-visible { transform: none; }
.wrap { width: min(var(--max), 100% - 2 * var(--pad)); margin-inline: auto; }
.zh { font-family: var(--font-zh); font-weight: 600; }
.kicker {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #0b0807;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.15rem;
  min-height: 4.5rem; padding-block: 0.45rem; width: min(var(--max), 100% - 2 * var(--pad)); margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  overflow: visible;
  color: var(--fg);
  text-decoration: none;
  background: transparent;
}
img.brand-lockup {
  display: block;
  height: 3.35rem;
  width: auto;
  max-width: min(14rem, 46vw);
  object-fit: contain;
  object-position: center;
  margin: 0;
  background: transparent;
}
@media (min-width: 880px) {
  .header-inner { min-height: 5.65rem; padding-block: 0.5rem; }
  img.brand-lockup { height: 4.35rem; max-width: 17.5rem; }
}
.site-footer .brand { margin-bottom: 0.85rem; }
.site-footer img.brand-lockup {
  height: 5.5rem;
  max-width: min(20rem, 100%);
}
.nav-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.75rem; min-width: 2.75rem; padding: 0;
  border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
  color: var(--fg); background: transparent;
}
.nav-icon {
  position: relative; width: 1.1rem; height: 0.85rem; display: block;
}
.nav-icon::before, .nav-icon::after, .nav-icon span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor; border-radius: 1px;
}
.nav-icon span { top: 50%; margin-top: -1px; }
.nav-icon::before { top: 0; }
.nav-icon::after { bottom: 0; }
.nav-btn[aria-expanded="true"] .nav-icon span { opacity: 0; }
.nav-btn[aria-expanded="true"] .nav-icon::before {
  top: 50%; margin-top: -1px; transform: rotate(45deg);
}
.nav-btn[aria-expanded="true"] .nav-icon::after {
  bottom: 50%; margin-bottom: -1px; transform: rotate(-45deg);
}
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem; }
.primary-nav a {
  display: inline-flex; align-items: center; min-height: 2.75rem;
  color: var(--muted); text-decoration: none; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--fg); }
.header-actions { display: flex; flex-wrap: nowrap; gap: 0.4rem; }
.btn-short { display: none; }
@media (max-width: 879px) {
  body.nav-open { overflow: hidden; }
  .header-inner { flex-wrap: wrap; gap: 0.45rem; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { padding: 0 0.7rem; font-size: 0.8rem; }
  .btn-full { display: none; }
  .btn-short { display: inline; }
  .nav-btn { order: 3; }
  .primary-nav {
    display: none; order: 10; flex-basis: 100%; width: 100%;
    background: var(--bg); border-top: 1px solid var(--line); padding: 0.25rem 0 0.75rem;
  }
  .site-header.is-open .primary-nav { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { width: 100%; border-bottom: 1px solid var(--line); }
}
@media (min-width: 880px) {
  .nav-btn { display: none; }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.75rem; padding: 0 1.15rem; border-radius: 999px;
  font: inherit; font-size: 0.9rem; font-weight: 600; text-decoration: none;
  cursor: pointer; border: 1px solid transparent;
}
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #fff; color: var(--ink); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-outline:hover { border-color: var(--cream); color: var(--fg); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.hero { position: relative; min-height: min(92vh, 52rem); display: flex; align-items: flex-end; isolation: isolate; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; z-index: -2; }
.hero .scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, var(--bg) 8%, color-mix(in srgb, var(--bg) 55%, transparent) 45%, color-mix(in srgb, var(--bg) 25%, transparent) 100%);
}
.hero-copy { padding: 6rem 0 3.5rem; }
.hero h1 { margin-top: 1rem; font-size: clamp(2.4rem, 7vw, 5.2rem); max-width: 16ch; letter-spacing: -0.02em; }
.hero .lede { margin-top: 1.25rem; max-width: 38rem; font-size: 1.1rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.75rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.5rem; font-size: 0.9rem; color: var(--muted); }
.dot { display: inline-block; width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--muted); margin-right: 0.4rem; vertical-align: middle; }
.dot.open { background: var(--ok); }
section { border-top: 1px solid var(--line); }
.section-pad { padding: 3.5rem 0; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.75rem); margin-top: 0.4rem; }
.method {
  display: grid; grid-template-columns: 1fr;
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 800px) { .method { grid-template-columns: repeat(3, 1fr); } }
.method li { padding: 2.5rem var(--pad); border-bottom: 1px solid var(--line); }
@media (min-width: 800px) {
  .method li { border-bottom: 0; border-right: 1px solid var(--line); }
  .method li:last-child { border-right: 0; }
}
.method .num { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--chili); }
.method h2 { margin-top: 1.25rem; font-size: 1.6rem; }
.method p { margin: 0.75rem 0 0; color: var(--muted); max-width: 28ch; }
.feature-photo { position: relative; min-height: min(80vh, 44rem); display: flex; align-items: flex-end; isolation: isolate; }
.feature-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; z-index: -2; }
.feature-photo .scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, var(--bg), transparent 55%); }
.feature-photo .copy { padding: 3rem 0; }
.price { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }
.menu-block + .menu-block { margin-top: 3rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: grid; grid-template-columns: 1fr auto; gap: 0.25rem 1rem;
  padding: 1.15rem 0; border-top: 1px solid var(--line);
}
.menu-list h4 { font-size: 1.15rem; }
.menu-list .desc { grid-column: 1 / -1; margin: 0.2rem 0 0; color: var(--muted); font-size: 0.95rem; max-width: 42rem; }
.badge {
  display: inline-block; margin-left: 0.4rem; font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--chili);
}
.code { color: var(--muted); font-size: 0.8rem; font-weight: 600; margin-right: 0.35rem; }
.loc { position: relative; min-height: min(88vh, 46rem); display: flex; align-items: flex-end; isolation: isolate; }
.loc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.loc .irvine { object-position: center 32%; }
.loc .scp { object-position: center; }
.loc .glendale { object-position: center 42%; }
.loc .scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, var(--bg) 12%, color-mix(in srgb, var(--bg) 70%, transparent) 55%, color-mix(in srgb, var(--bg) 20%, transparent));
}
.loc .copy { padding: 3rem 0; }
.loc h3 { font-size: clamp(2.2rem, 6vw, 4rem); margin-top: 0.4rem; }
address { font-style: normal; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.split { display: grid; background: var(--surface); }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } }
.split .media { min-height: 20rem; position: relative; }
.split .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split .copy { padding: 3rem var(--pad); }
.form { display: grid; gap: 1rem; max-width: 36rem; }
label, .legend { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; }
input[type="email"], input[type="text"], select, textarea {
  width: 100%; min-height: 2.75rem; padding: 0.6rem 0.85rem;
  border: 1px solid var(--line); border-radius: 0.65rem;
  background: var(--elevated); color: var(--fg); font: inherit;
}
textarea { min-height: 7rem; resize: vertical; }
fieldset { border: 1px solid var(--line); border-radius: 0.75rem; padding: 0.9rem 1rem; margin: 0; }
.rating { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.rating label {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.75rem; min-height: 2.75rem; margin: 0; padding: 0 0.7rem;
  border: 1px solid var(--line); border-radius: 0.5rem; cursor: pointer; font-weight: 600;
}
.rating input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rating label:has(input:checked) { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.rating label:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.advisory {
  margin: 1.25rem 0; padding: 0.9rem 1rem; border: 1px solid var(--line);
  border-radius: 0.65rem; color: var(--muted); font-size: 0.9rem; max-width: 46rem;
}
.price-note { color: var(--muted); font-size: 0.9rem; max-width: 42rem; }
.sticky-order {
  position: sticky; bottom: 0; z-index: 30;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-top: 1px solid var(--line);
  padding: 0.65rem var(--pad);
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; justify-content: center;
}
.filters { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 1.5rem; }
.filters button {
  min-height: 2.5rem; padding: 0 0.85rem; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; color: var(--cream);
  font: inherit; font-size: 0.8rem; font-weight: 600; cursor: pointer;
}
.filters button[aria-pressed="true"] { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.menu-list li.is-hidden { display: none; }
.check { display: flex; align-items: flex-start; gap: 0.65rem; font-weight: 400; }
.check input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; accent-color: var(--chili); }
.form-status[role="status"] { min-height: 1.4em; color: var(--cream); font-weight: 600; }
.req { color: var(--chili); }
.site-footer { background: var(--surface); border-top: 1px solid var(--line); }
.foot-grid { display: grid; gap: 2rem; padding: 3rem 0; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-grid h2 { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.legal {
  border-top: 1px solid var(--line); display: flex; flex-wrap: wrap;
  gap: 0.75rem 1.5rem; justify-content: space-between; padding: 1rem 0 1.5rem;
  font-size: 0.85rem; color: var(--muted);
}
.legal a { color: var(--muted); }
.legal a:hover { color: var(--fg); }
dialog {
  width: min(28rem, calc(100% - 2rem)); padding: 1.5rem;
  border: 1px solid var(--line); border-radius: 1rem;
  background: var(--surface); color: var(--fg);
}
dialog::backdrop { background: rgb(0 0 0 / 0.72); }
dialog h2 { font-size: 1.6rem; }
dialog p { color: var(--muted); }
.room-list { list-style: none; margin: 1rem 0; padding: 0; display: grid; gap: 0.5rem; }
.room-list a {
  display: block; padding: 0.9rem 1rem; border: 1px solid var(--line);
  border-radius: 0.75rem; text-decoration: none; color: var(--fg); min-height: 2.75rem;
}
.room-list a:hover { border-color: var(--cream); }
.room-list small { display: block; color: var(--muted); font-size: 0.8rem; }
.dialog-close { margin-top: 0.75rem; }
.prose { max-width: 42rem; color: var(--muted); }
.prose h2 { color: var(--fg); font-size: 1.35rem; margin: 1.75rem 0 0.5rem; font-family: var(--font-display); }
.prose ul { padding-left: 1.2rem; }
.note { color: var(--muted); max-width: 40rem; }
@media (forced-colors: active) {
  .btn, .nav-btn, .room-list a, .rating label, input, select, textarea, fieldset { border: 2px solid ButtonText; }
}
