:root {
  --paper: #fcfaf4;
  --green: #244d40;
  --ink: #26362f;
  --honey: #d8aa62;
  --leaf: #e6eadf;
  --line: #d4d9cc;
  --muted: #536459;
  --serif: Georgia, "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #af6618;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
figure {
  margin: 0;
}
p {
  margin: 0 0 1.3em;
  max-width: 65ch;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 25px;
}
h1 {
  font-size: clamp(54px, 6.3vw, 100px);
}
h2 {
  font-size: clamp(38px, 4vw, 60px);
}
h3 {
  font-size: 27px;
}
address {
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 26px;
}
svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.site-header {
  max-width: 1600px;
  margin: auto;
  padding: 25px 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 105px;
}
.brand {
  display: block;
  line-height: 0.8;
  min-width: 167px;
  text-decoration: none !important;
}
.brand-the {
  font-family: var(--serif);
  font-size: 16px;
  display: block;
  margin: 0 0 7px 3px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 35px;
  letter-spacing: -1.5px;
}
.brand-dot {
  color: #a36c24;
}
#primary-nav {
  display: flex;
  gap: 29px;
  align-items: center;
  font-size: 14px;
}
#primary-nav > a:not(.button) {
  padding: 10px 0;
}
#primary-nav [aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 7px;
}
.language {
  border-left: 1px solid var(--line);
  padding-left: 27px !important;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 24px;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 5px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.button:hover {
  background: #173b30;
  text-decoration: none;
}
.button.secondary {
  background: transparent;
  color: var(--green);
}
.button.secondary:hover {
  background: var(--leaf);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.nav-toggle {
  display: none;
}
.skip {
  position: fixed;
  left: 15px;
  top: -100px;
  background: white;
  z-index: 99;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.hero {
  display: grid;
  grid-template-columns: 43% 57%;
  max-width: 1600px;
  margin: auto;
  min-height: 685px;
}
.hero-copy {
  padding: 46px 6% 40px 10.5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.location-label {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 25px;
}
.hero h1 {
  font-size: clamp(66px, 6.5vw, 104px);
  margin-bottom: 27px;
}
.lead {
  font-size: 19px;
  line-height: 1.7;
  max-width: 47ch;
}
.hero .lead {
  max-width: 31ch;
  font-size: 17px;
  margin-bottom: 30px;
}
.hero-address {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  line-height: 1.6;
  margin-top: auto;
  padding-top: 30px;
}
.hero-photo {
  position: relative;
  margin: 0 4.5vw 0 0;
  min-width: 0;
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 3px;
  object-position: 53% center;
}
.hero-photo figcaption {
  position: absolute;
  bottom: 22px;
  left: 26px;
  right: 26px;
  background: var(--paper);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green);
  font-size: 12px;
}
.hero-photo figcaption span:first-child {
  font-family: var(--serif);
  font-size: 24px;
}
.photo-note {
  position: absolute;
  right: 14px;
  top: 14px;
  color: white;
  background: #26362fd9;
  padding: 3px 8px;
  font-size: 10px;
}
.welcome-strip {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6.3%;
  background: var(--leaf);
  margin-top: 35px;
  font-size: 13px;
}
.welcome-strip > div,
.welcome-strip > a {
  display: flex;
  align-items: center;
  gap: 13px;
}
.welcome-strip svg {
  width: 21px;
}
.section {
  padding: 105px 6.3%;
  max-width: 1600px;
  margin: auto;
}
.food-preview {
  display: grid;
  grid-template-columns: 36% 58%;
  gap: 6%;
  align-items: center;
}
.section-copy p:not(.location-label) {
  color: var(--muted);
}
.section-copy .button {
  margin: 10px 0 26px;
}
.small {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.food-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.food-photo-pair figure:first-child {
  margin-top: 50px;
}
.food-photo-pair img {
  width: 100%;
  height: 360px;
  border-radius: 3px;
}
.food-photo-pair figcaption,
figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 9px;
}
.community-band {
  background: var(--green);
  color: var(--paper);
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 9%;
  align-items: center;
  padding: 67px 12%;
}
.community-band h2 {
  font-size: clamp(35px, 3.4vw, 52px);
}
.community-band p {
  max-width: 55ch;
  color: #e2e8df;
  font-size: 15px;
}
.partner-emblem {
  width: 220px;
  height: 220px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.partner-emblem span {
  font-size: 12px;
}
.partner-emblem strong {
  font: 30px/1.03 var(--serif);
  letter-spacing: -1px;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover {
  border-bottom-width: 2px;
  text-decoration: none;
}
.visit-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13%;
}
.visit-teaser address {
  font-size: 24px;
}
.visit-teaser p {
  color: var(--muted);
  font-size: 15px;
}
footer {
  background: var(--leaf);
  padding: 52px 6.3% 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid #bac4b6;
  padding-bottom: 35px;
  margin-bottom: 22px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.footer-top p {
  font-size: 13px;
  margin: 0;
}
.footer-bottom {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 11px;
  align-items: center;
}
.footer-bottom > span:last-child {
  margin-left: auto;
}
.page-title {
  padding: 63px 6.3% 54px;
  max-width: 1600px;
  margin: auto;
}
.page-title h1 {
  max-width: 1100px;
}
.page-title .lead {
  max-width: 62ch;
}
.menu-intro {
  padding: 0 6.3% 25px;
  max-width: 1600px;
  margin: auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 45px;
}
.menu-intro > p {
  font-size: 14px;
  color: var(--muted);
  max-width: 55ch;
}
.menu-tabs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  flex-shrink: 0;
}
.menu-tabs a {
  white-space: nowrap;
}
.menu-feature {
  max-width: 1350px;
  margin: 0 auto;
  padding: 65px 6.3%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
}
.menu-feature.reverse > div {
  order: 2;
}
.menu-feature.reverse > figure {
  order: 1;
}
.menu-feature p {
  color: var(--muted);
}
.menu-feature img {
  width: 100%;
  height: 450px;
  border-radius: 4px;
}
.menu-list {
  padding: 0;
  list-style: none;
  margin: 30px 0;
}
.menu-list li {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.menu-list li span:last-child {
  font-size: 12px;
  color: var(--muted);
}
.quiet-note {
  background: var(--leaf);
  padding: 35px 6.3%;
  text-align: center;
  font-size: 14px;
  margin-top: 45px;
}
.visit-layout {
  display: grid;
  grid-template-columns: 57% 35%;
  gap: 8%;
  padding: 15px 6.3% 75px;
  max-width: 1600px;
  margin: auto;
}
.visit-layout img {
  width: 100%;
  height: 655px;
  object-position: 50%;
}
.visit-details {
  padding-top: 20px;
}
.visit-details h2 {
  font-size: 35px;
  margin: 0 0 20px;
}
.visit-details h2:not(:first-child) {
  margin-top: 45px;
}
.visit-details h3 {
  margin-top: 35px;
}
.visit-details p {
  font-size: 15px;
  color: var(--muted);
}
.phone-large {
  font-family: var(--serif);
  font-size: 29px;
  white-space: nowrap;
}
.about-copy {
  max-width: 870px;
  margin: 0 auto;
  padding: 45px 6.3% 90px;
  text-align: center;
}
.about-copy p {
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}
.booking-layout {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 35% 57%;
  gap: 8%;
  padding: 10px 6.3% 100px;
}
.booking-info h2,
form h2 {
  font-size: 36px;
}
.booking-info > .phone-large {
  display: inline-block;
  margin-bottom: 25px;
}
.booking-info > p {
  font-size: 14px;
  color: var(--muted);
}
.confirmation-note {
  padding: 23px;
  border-left: 3px solid var(--honey);
  background: var(--leaf);
  margin: 25px 0;
}
.confirmation-note p {
  margin: 9px 0 0;
  font-size: 14px;
}
.confirmation-note strong {
  font-size: 15px;
}
details {
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
summary {
  cursor: pointer;
}
details p {
  margin-top: 15px;
}
form {
  background: white;
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 6px;
}
form > p {
  font-size: 14px;
  color: var(--muted);
}
label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 7px;
  margin-bottom: 20px;
}
input,
select,
textarea {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  background: var(--paper);
  border: 1px solid #acb8ad;
  border-radius: 4px;
  padding: 12px;
  color: var(--ink);
  font-size: 16px;
  min-height: 48px;
}
textarea {
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
#booking-status {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--green);
}
#booking-preview {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
#booking-preview h3 {
  font-size: 26px;
}
#booking-preview > p {
  font-size: 13px;
  margin: 18px 0 0;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  padding: 18px;
  background: var(--leaf);
  border-radius: 3px;
}
[hidden] {
  display: none !important;
}
.program-intro {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 8%;
  background: var(--leaf);
  padding: 65px 10%;
  align-items: center;
}
.program-intro h2 {
  font-size: 40px;
}
.program-intro p {
  font-size: 15px;
}
.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  padding: 85px 8% 35px;
}
.community-content h2 {
  font-size: 39px;
  margin-top: 20px;
}
.category-label {
  font-size: 13px;
  color: var(--muted);
}
.community-content p {
  font-size: 15px;
  color: var(--muted);
}
.community-content address {
  font-size: 15px;
}
.story-panel {
  background: var(--leaf);
  padding: 30px;
  margin-top: -25px;
  border-radius: 5px;
}
.community-disclosure {
  padding: 0 8% 65px;
  max-width: none;
}
.zh-note {
  font-size: 14px;
}
html[lang="zh-Hans"] h1 {
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}
html[lang="zh-Hans"] h2 {
  line-height: 1.25;
}
html[lang="zh-Hans"] .hero .lead {
  max-width: 24ch;
}
html[lang="zh-Hans"] .hero-copy {
  padding-top: 60px;
}
@media (min-width: 1600px) {
  .hero-photo {
    margin-right: 72px;
  }
  .community-band,
  .welcome-strip {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
  .welcome-strip {
    margin-top: 35px;
  }
}
@media (max-width: 1100px) {
  #primary-nav {
    gap: 18px;
  }
  .site-header {
    padding: 20px 5%;
  }
  .hero {
    min-height: 620px;
    grid-template-columns: 45% 55%;
  }
  .hero h1 {
    font-size: 74px;
  }
  .hero-copy {
    padding-top: 35px;
  }
  .hero .lead {
    font-size: 16px;
  }
  .hero-photo {
    margin-right: 4vw;
  }
  .hero-address {
    font-size: 11px;
  }
  .food-photo-pair img {
    height: 280px;
  }
  .section {
    padding: 75px 6%;
  }
  .community-band {
    padding: 60px 8%;
    gap: 9%;
  }
  .menu-intro {
    display: block;
  }
  .menu-tabs {
    width: max-content;
  }
  .visit-layout img {
    height: 600px;
  }
  .booking-layout {
    grid-template-columns: 36% 60%;
    gap: 4%;
    padding-left: 5%;
    padding-right: 5%;
  }
  form {
    padding: 27px;
  }
  .footer-bottom > span:last-child {
    margin-left: 0;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 15px;
  }
  .site-header {
    min-height: 91px;
    padding: 20px 6%;
    gap: 20px;
    position: relative;
  }
  .brand-name {
    font-size: 31px;
  }
  .brand-the {
    font-size: 14px;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--green);
  }
  #primary-nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 6% 30px;
    z-index: 10;
    box-shadow: 0 15px 20px #26362f12;
    align-items: stretch;
    gap: 13px;
  }
  #primary-nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .language {
    border-left: none;
    padding-left: 0 !important;
  }
  #primary-nav .button {
    margin-top: 5px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    padding: 23px 6% 33px;
  }
  .hero h1 {
    font-size: 60px;
    line-height: 1.05;
    margin-bottom: 22px;
  }
  .location-label {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .hero .lead {
    font-size: 16px;
    max-width: 34ch;
    margin-bottom: 22px;
  }
  .hero .actions {
    gap: 10px;
  }
  .button {
    padding: 12px 19px;
    font-size: 13px;
  }
  .hero-address {
    margin-top: 20px;
    padding-top: 0;
    line-height: 1.5;
    font-size: 11px;
  }
  .hero-photo {
    height: 410px;
    min-height: 0;
    margin: 0 6%;
  }
  .hero-photo > img {
    object-position: 50% center;
  }
  .hero-photo figcaption {
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 12px 14px;
  }
  .hero-photo figcaption span:first-child {
    font-size: 22px;
  }
  .welcome-strip {
    margin-top: 28px;
    padding: 23px 6%;
    display: grid;
    gap: 17px;
    font-size: 12px;
  }
  .welcome-strip > div:nth-child(2) {
    display: none;
  }
  .section {
    padding: 58px 6%;
  }
  h2 {
    font-size: 40px;
  }
  .food-preview {
    display: block;
  }
  .section-copy {
    max-width: 480px;
  }
  .section-copy .button {
    margin-top: 2px;
    margin-bottom: 18px;
  }
  .food-photo-pair {
    gap: 15px;
    margin-top: 20px;
  }
  .food-photo-pair figure:first-child {
    margin-top: 30px;
  }
  .food-photo-pair img {
    height: 240px;
  }
  .food-photo-pair figcaption {
    font-size: 10px;
  }
  .community-band {
    padding: 45px 7%;
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: start;
  }
  .partner-emblem {
    width: 160px;
    height: 160px;
    align-self: center;
    gap: 7px;
  }
  .partner-emblem strong {
    font-size: 25px;
  }
  .partner-emblem span {
    font-size: 10px;
  }
  .community-band h2 {
    font-size: 39px;
  }
  .community-band p {
    font-size: 14px;
  }
  .visit-teaser {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .visit-teaser h2 {
    margin-bottom: 8px;
  }
  .visit-teaser address {
    font-size: 22px;
  }
  footer {
    padding: 35px 6% 24px;
  }
  .footer-top {
    display: block;
    padding-bottom: 25px;
  }
  .footer-brand {
    font-size: 34px;
  }
  .footer-top p {
    margin-top: 16px;
  }
  .footer-bottom {
    gap: 14px;
    font-size: 11px;
  }
  .footer-bottom > span:first-child,
  .footer-bottom > span:last-child {
    width: 100%;
  }
  .page-title {
    padding: 32px 6%;
  }
  .page-title h1 {
    font-size: 54px;
  }
  .lead {
    font-size: 16px;
  }
  .menu-intro {
    padding: 0 6% 15px;
  }
  .menu-intro > p {
    font-size: 13px;
  }
  .menu-tabs {
    gap: 16px;
    font-size: 12px;
    width: 100%;
    flex-wrap: wrap;
  }
  .menu-feature {
    padding: 35px 6%;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .menu-feature.reverse > div {
    order: 0;
  }
  .menu-feature.reverse > figure {
    order: 0;
  }
  .menu-feature h2 {
    font-size: 38px;
  }
  .menu-feature img {
    height: 370px;
  }
  .menu-list {
    margin-top: 20px;
  }
  .quiet-note {
    margin-top: 20px;
    text-align: left;
    padding: 27px 6%;
    font-size: 13px;
  }
  .visit-layout {
    display: flex;
    flex-direction: column;
    padding: 10px 6% 25px;
    gap: 20px;
  }
  .visit-layout img {
    height: 380px;
  }
  .visit-details {
    padding-top: 0;
  }
  .visit-details h2:not(:first-child) {
    margin-top: 30px;
  }
  .about-copy {
    padding: 35px 6% 55px;
    text-align: left;
  }
  .booking-layout {
    display: flex;
    flex-direction: column;
    padding: 5px 6% 55px;
    gap: 30px;
  }
  .booking-info h2 {
    font-size: 30px;
  }
  .booking-info > .phone-large {
    margin-bottom: 17px;
  }
  .booking-info .confirmation-note {
    margin: 18px 0;
  }
  .booking-info details {
    margin-top: 18px;
  }
  form {
    padding: 22px 18px;
  }
  form h2 {
    font-size: 31px;
  }
  .form-row {
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  input,
  select,
  textarea {
    padding: 10px 7px;
    font-size: 16px;
  }
  .program-intro {
    display: flex;
    flex-direction: column;
    padding: 40px 6%;
    gap: 27px;
  }
  .program-intro h2 {
    font-size: 32px;
  }
  .program-intro p {
    font-size: 14px;
  }
  .community-content {
    grid-template-columns: 1fr;
    padding: 40px 6% 20px;
    gap: 50px;
  }
  .community-content h2 {
    font-size: 34px;
  }
  .story-panel {
    padding: 25px;
    margin-top: 0;
  }
  .community-disclosure {
    padding: 0 6% 45px;
  }
  html[lang="zh-Hans"] .hero-copy {
    padding-top: 28px;
  }
  html[lang="zh-Hans"] h1 {
    font-size: 56px;
    line-height: 1.18;
  }
  html[lang="zh-Hans"] .page-title h1 {
    font-size: 43px;
  }
  html[lang="zh-Hans"] .hero .lead {
    max-width: 29ch;
  }
  html[lang="zh-Hans"] .hero-photo {
    height: 380px;
  }
}
@media (max-width: 370px) {
  .hero h1 {
    font-size: 55px;
  }
  .hero-photo {
    height: 360px;
  }
  .food-photo-pair img {
    height: 205px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .partner-emblem {
    width: 145px;
    height: 145px;
  }
  html[lang="zh-Hans"] h1 {
    font-size: 49px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

#qr-handoff {
  padding: 24px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
#qr-handoff h3 {
  font-size: 25px;
  margin-bottom: 18px;
}
#request-qr {
  max-width: 290px;
  background: white;
  margin: 0 auto 20px;
}
#request-qr svg {
  display: block;
  width: 100%;
  height: auto;
}
#qr-status {
  font-size: 14px;
}
#qr-handoff .small {
  margin-top: 15px;
}
