/* MING HING RESTAURANT GROUP — dim sum steam kitchen of Sai Kung */
/* palette: rice paper, charcoal ink, indigo dye, celadon glaze, bamboo weave, steam white, lacquer brown */

.steamer, .opensteamer, .orderchit, .kitchen, .booking, .teatray,
body, html {
  margin: 0;
  padding: 0;
}
* { box-sizing: border-box; }

body {
  font-family: Georgia, "Times New Roman", serif;
  background-color: #F7F2E8;
  color: #26282A;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #333C7A; text-decoration: none; }
a:hover { color: #4A3A2C; }
h1, h2, h3, h4 { font-weight: 700; color: #26282A; margin: 0 0 0.6em; line-height: 1.2; }
p { margin: 0 0 1em; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* reveal helpers: safe without JS */
[data-reveal] { opacity: 1; transform: none; }
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}
html.js [data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* ---------------- NAVIGATION : STEAMER STACK ---------------- */
.menu { position: static; }
.steamer {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #F7F2E8;
  border-bottom: 3px double #9FC4B0;
  box-shadow: 0 2px 0 #D9C49A;
}
.steamer-bar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 38px;
  position: relative;
}
.rim {
  position: absolute;
  left: 0;
  width: 40px;
  height: 9px;
  border: 2px solid #26282A;
  border-radius: 50%;
  background-color: #D9C49A;
}
.rim.r1 { top: 2px; }
.rim.r2 { top: 12px; }
.rim.r3 { top: 22px; }
.stack-curls {
  position: absolute;
  right: -2px;
  top: -6px;
  width: 8px;
  height: 10px;
  border-radius: 50%;
  background-color: #FDFBF5;
  border: 2px solid #26282A;
}
.brand-word {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #26282A;
}
.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tag {
  font-family: Georgia, serif;
  background-color: #D9C49A;
  border: 1px solid #B89452;
  border-radius: 6px;
  color: #26282A;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-style: double;
}
.tag:hover { background-color: #C9AA74; color: #26282A; }
.cta-tag {
  background-color: #333C7A;
  color: #FDFBF5;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.cta-tag:hover { background-color: #4A3A2C; color: #FDFBF5; }
.nav-toggle {
  display: none;
  background: #333C7A;
  color: #FDFBF5;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  padding: 8px 14px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #F7F2E8;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 16px;
    border-bottom: 3px double #9FC4B0;
    box-shadow: 6px 6px 0 #26282A;
  }
  .steamer.menu-open .menu { display: flex; }
  .menu .tag, .menu .cta-tag { text-align: center; }
}

/* ---------------- HERO : OPEN STEAMER ---------------- */
.opensteamer { background-color: #F7F2E8; }
.steam-line {
  background-color: #D9C49A;
  width: 100%;
  padding: 42px 24px 30px;
  border-bottom: 6px solid #FDFBF5;
}
.steam-stage {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  flex-wrap: wrap;
}
.steamer-set { position: relative; }
.open-steamer {
  position: relative;
  width: 300px;
  margin: 18px auto 0;
}
.steamer-base {
  width: 300px;
  height: 34px;
  border: 3px solid #26282A;
  border-radius: 0 0 26px 26px;
  background-color: #C9A86C;
}
.steamer-tray {
  width: 312px;
  height: 26px;
  border: 3px solid #26282A;
  border-radius: 12px;
  background-color: #D9C49A;
  margin: -4px auto 0;
}
.dumpling-ring {
  position: relative;
  width: 300px;
  height: 120px;
  margin: -2px auto 0;
  background-color: #FDFBF5;
  border: 3px solid #26282A;
  border-radius: 8px 8px 34px 34px;
}
.gu { position: absolute; border-radius: 6px; }
.gu.dum { background-color: #E9CFA0; }
.gu.bun { background-color: #9FC4B0; }
.gu.d3 { background-color: #D9C49A; }
.gu1 { left: 30px; top: 22px; width: 44px; height: 34px; }
.gu2 { left: 96px; top: 14px; width: 50px; height: 30px; }
.gu3 { left: 168px; top: 26px; width: 42px; height: 32px; }
.gu4 { left: 228px; top: 40px; width: 40px; height: 30px; }
.gu5 { left: 8px; top: 66px; width: 40px; height: 26px; }
.gu6 { left: 250px; top: 6px; width: 34px; height: 26px; }

.steam-curl { position: absolute; border-radius: 50%; background-color: #FDFBF5; }
.curl-1 { width: 120px; height: 120px; top: -130px; left: 30px; }
.curl-2 { width: 150px; height: 150px; top: -150px; right: 10px; }
.curl-3 { width: 80px; height: 80px; top: -80px; right: 90px; }

.side-sill { background-color: #D9C49A; border-radius: 50%; }
.teaset { width: 210px; display: flex; flex-direction: column; gap: 12px; }
.tray-plank {
  height: 14px;
  background-color: #4A3A2C;
  border: 2px solid #26282A;
  border-radius: 8px;
}
.tea-pot {
  width: 64px;
  height: 40px;
  background-color: #4A3A2C;
  border: 3px solid #26282A;
  border-radius: 10px 10px 12px 12px;
  align-self: flex-end;
}
.pot-lid {
  width: 30px;
  height: 8px;
  background-color: #9FC4B0;
  border: 1px solid #26282A;
  border-radius: 4px;
  align-self: flex-end;
  margin-bottom: -3px;
  margin-right: 17px;
}
.tea-cupline { display: flex; gap: 10px; }
.sip-cup {
  width: 20px;
  height: 16px;
  background-color: #FDFBF5;
  border: 2px solid #4A3A2C;
  border-radius: 3px 3px 8px 8px;
}
.lid-knob {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #FDFBF5;
  border: 3px solid #4A3A2C;
}

.tea-tray {
  width: 190px;
  height: 34px;
  background-color: #4A3A2C;
  border: 3px solid #26282A;
  border-radius: 16px;
}
.tea-dot { position: absolute; width: 16px; height: 16px; border-radius: 50%; background-color: #9FC4B0; }

.order-sheet {
  background-color: #FDFBF5;
  border-top: 8px solid #333C7A;
  border-left: 6px dotted #9FC4B0;
  padding: 54px 24px 44px;
  position: relative;
}
.hero-row {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.eyebrow {
  display: inline-block;
  background-color: #9FC4B0;
  color: #4A3A2C;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}
.hero-title {
  font-size: 2.7rem;
  margin: 18px 0 6px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.chop { color: #333C7A; }
.hero-lede { max-width: 760px; font-size: 1.15rem; color: #26282A; }
.hero-actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.steam-btn {
  display: inline-block;
  background-color: #333C7A;
  color: #FDFBF5;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 700;
}
.steam-btn:hover { color: #FDFBF5; background-color: #4A3A2C; }
.steam-btn.bamboo {
  background-color: #D9C49A;
  color: #26282A;
  border: 2px solid #26282A;
}
.steam-btn.bamboo:hover { background-color: #C9AA74; }
.pinned-chit {
  position: absolute;
  right: 20px;
  top: -24px;
  width: 150px;
  background-color: #F7F2E8;
  border: 2px solid #333C7A;
  padding: 8px 10px;
  transform: rotate(2deg);
  font-size: 0.8rem;
}
.chit-line { border-top: 1px dashed #9FC4B0; margin: 4px 0; }

.kick {
  width: 100%;
  background-color: #4A3A2C;
  color: #FDFBF5;
}
.kick-stats {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.stat { text-align: center; flex: 1; }
.stat b { display: block; font-size: 2rem; color: #FDFBF5; }
.stat-label { color: #F0DDB4; letter-spacing: 0.08em; font-size: 0.85rem; text-transform: uppercase; }
.stat-sep { width: 2px; background-color: #9FC4B0; align-self: stretch; }
.stat { color: #FDFBF5; }

/* ---------------- ORDER CHIT ROWS + KITCHEN PASSAGE ---------------- */
.orderchit { background-color: #F7F2E8; padding: 60px 0 10px; }
.chit-intro { text-align: center; padding-bottom: 20px; }
.chit-intro h2 { font-size: 2rem; }
.chit-intro p { max-width: 680px; margin: 0 auto; color: #26282A; }

.rowhead {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.chit-row {
  position: relative;
  background-color: #FDFBF5;
  border-left: 6px dotted #9FC4B0;
  padding: 22px 24px 22px 30px;
  box-shadow: 0 3px 0 #D9C49A;
  border-top: 2px solid #E9DBBB;
}
.chit-row.right { margin-left: 40px; transform: translateX(0); }
.chit-row.offset { margin-right: 40px; }
@media (min-width: 900px) {
  .chit-row:nth-child(even) { margin-left: 40px; }
  .chit-row:nth-child(odd) { margin-right: 40px; }
}
.chop-stamp {
  position: absolute;
  right: 14px;
  top: 12px;
  color: #333C7A;
  font-size: 0.75rem;
  border: 2px solid #333C7A;
  padding: 3px 7px;
  border-radius: 3px;
  transform: rotate(6deg);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.chit-code {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #333C7A;
  color: #FDFBF5;
  font-weight: 700;
  float: left;
  margin-right: 16px;
}
.chit-row h3 { margin: 0 0 0.4em; display: inline-block; font-size: 1.4rem; }
.chit-row h3 .tagchip {
  font-size: 0.7rem;
  background-color: #D9C49A;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
}
.chit-row p { clear: both; color: #26282A; }
.details-link {
  display: inline-block;
  margin-top: 6px;
  color: #333C7A;
  font-weight: 700;
  border-bottom: 2px solid #9FC4B0;
}

/* statement band between the two movements */
.statement-band {
  background-color: #4A3A2C;
  color: #FDFBF5;
  margin: 44px 0 8px;
  padding: 34px 24px;
  text-align: center;
}
.statement-inner { max-width: 860px; margin: 0 auto; }
.statement-figure {
  font-size: 4rem;
  color: #FDFBF5;
  margin: 0;
  line-height: 1;
}
.statement-pledge {
  font-size: 1.15rem;
  color: #F0DDB4;
  max-width: 620px;
  margin: 12px auto 0;
}

/* kitchen passage */
.kitchen {
  background-color: #D9C49A;
  padding: 54px 0 64px;
  border-top: 3px solid #FDFBF5;
  border-bottom: 3px solid #FDFBF5;
}
.kitchen-title { text-align: center; color: #26282A; font-size: 1.9rem; }
.kitchen-sub { text-align: center; max-width: 700px; margin: 0 auto 30px; }
.counter-line {
  max-width: 1060px;
  margin: 22px auto 0;
  border-top: 4px dashed #333C7A;
  position: relative;
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.station {
  flex: 1;
  min-width: 150px;
  background-color: #C9AA74;
  border: 3px solid #4A3A2C;
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  position: relative;
}
.station::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #FDFBF5;
  border: 3px solid #4A3A2C;
  margin: -38px auto 10px;
}
.station h4 { margin: 0 0 6px; font-size: 1.05rem; }
.station p { margin: 0; font-size: 0.9rem; color: #26282A; }
.station.final { background-color: #333C7A; border-color: #26282A; }
.station.final h4, .station.final p { color: #FDFBF5; }
.steam-puff { color: #FFFFFF; letter-spacing: 3px; }

/* ---------------- ACCENT STRIP : booking ---------------- */
.booking {
  background-color: #333C7A;
  color: #FDFBF5;
  padding: 54px 24px;
}
.booking-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stamp-tag {
  display: inline-block;
  border: 2px solid #D9C49A;
  color: #D9C49A;
  padding: 5px 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  transform: rotate(-2deg);
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.booking-inner h2 { color: #FDFBF5; font-size: 2rem; }
.booking-inner p { max-width: 780px; margin: 0 auto 22px; color: #FDFBF5; }
.booking-btn {
  display: inline-block;
  background-color: #9FC4B0;
  color: #26282A;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 700;
}
.booking-btn:hover { background-color: #D9C49A; color: #26282A; }

/* ---------------- TEA TRAY FOOTER ---------------- */
.teatray { background-color: #4A3A2C; color: #FDFBF5; position: relative; z-index: 1; }
.tray-top {
  background-color: #9FC4B0;
  height: 8px;
  position: relative;
}
.teacup-row { display: flex; gap: 12px; justify-content: center; padding: 10px; }
.teacup { width: 16px; height: 14px; border-radius: 3px 3px 6px 6px; background-color: #FDFBF5; }
.motto { text-align: center; letter-spacing: 0.3em; color: #D9C49A; font-size: 0.95rem; padding: 6px 0 0; }
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 24px 20px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.foot-col h4 { color: #FDFBF5; border-bottom: 2px solid #9FC4B0; padding-bottom: 8px; }
.foot-col ul { list-style: none; padding: 0; margin: 12px 0 0; }
.foot-col ul li { margin: 8px 0; }
.foot-col a { color: #D9C49A; }
.foot-col a:hover { color: #FDFBF5; }
.base-plate {
  background-color: #F7F2E8;
  color: #26282A;
}
.base-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 2px solid #D9C49A;
  border-radius: 6px;
  text-align: center;
  background-color: #FDFBF5;
}
.company-name { font-weight: 700; font-size: 1.2rem; }
.base-inner p { margin: 4px 0; }
.copyline { color: #333C7A; text-align: center; padding: 12px 24px 22px; }

/* subnav pills */
.subnav {
  background-color: #FDFBF5;
  border-bottom: 2px solid #D9C49A;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.ptag {
  background-color: #F7F2E8;
  border: 1px solid #B89452;
  border-radius: 20px;
  padding: 6px 12px;
  color: #333C7A;
  font-weight: 600;
}
.ptag:hover { background-color: #333C7A; color: #FDFBF5; }
.wrap.note {
  max-width: 1180px;
  margin: 22px auto 0;
  text-align: center;
  color: #26282A;
}

/* ---------------- PAGE HERO : secondary pages ---------------- */
.subhero {
  background-color: #4A3A2C;
  color: #FDFBF5;
}
.subhero-inner { max-width: 1180px; margin: 0 auto; padding: 54px 24px 44px; text-align: center; }
.subhero h1 { color: #FDFBF5; font-size: 2.4rem; }
.eyebrow-lg { color: #F0DDB4; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; font-size: 0.85rem; }
.subhero .eyebrow-lg { color: #F0DDB4; letter-spacing: 0.2em; }
.subhero p { max-width: 760px; margin: 0 auto; color: #F4EBD8; font-size: 1.1rem; }

.section { padding: 52px 0; }
.band-bamboo { background-color: #D9C49A; }
.band-white { background-color: #FDFBF5; }
.band-paper { background-color: #F7F2E8; }

.section-head { max-width: 1180px; margin: 0 auto; padding-bottom: 20px; }
.section-head h2 { font-size: 1.9rem; }
.section-head.center { text-align: center; }
.rule-celadon { border: none; height: 3px; background-color: #9FC4B0; width: 90px; margin: 10px 0 18px; }

.dual-col { max-width: 1180px; margin: 0 auto; display: grid; gap: 40px; grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .dual-col { grid-template-columns: 1fr; } }

.list-band { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 22px; }
.menu-line { border-bottom: 2px dotted #C9AA74; padding: 14px 0; }
.menu-line h3 { margin: 0; font-size: 1.15rem; }
.menu-line h3 span { color: #333C7A; float: right; }
.menu-line p { margin: 6px 0 0; }

.nameplate { display: flex; flex-wrap: wrap; border: 2px solid #333C7A; background:#FDFBF5; border-radius:6px; gap: 0; }
.name-cols { flex: 1 1 260px; padding: 16px 18px; border-right: 1px dashed #9FC4B0; }
.name-cols:last-child { border-right: none; }
.label-k { color: #333C7A; font-weight: 700; letter-spacing:0.1em; text-transform: uppercase; font-size:0.78rem;}
.big-val { font-size: 1.7rem; font-weight: 700; }

/* accordion */
.acc { max-width: 980px; margin: 0 auto; }
.acc-toggle { width: 100%; text-align: left; background: #FDFBF5; border: 2px solid #D9C49A; padding: 14px 18px; cursor: pointer; font-weight: 700; font-family: inherit; color: #26282A; font-size: 1rem; }
.acc-toggle::after { content: " +"; float: right; color: #333C7A; }
.acc-panel { display: none; background: #FDFBF5; border: 2px solid #D9C49A; border-top: none; padding: 14px 18px; }
.acc-panel.open { display: block; }
.acc-item { margin-bottom: 12px; }

/* steps / stations reusable */
.step-row { max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 18px; }
.step { flex:1 1 170px; background:#FDFBF5; border-top: 6px solid #333C7A; padding: 16px; position: relative; border-radius: 0 0 6px 6px; }
.step .step-n { font-weight:700; color:#333C7A; }

/* forms */
.form-card { max-width: 760px; margin: 0 auto; background: #FDFBF5; border-top: 8px solid #333C7A; padding: 30px; border-left: 6px dotted #9FC4B0; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 700; margin-bottom: 5px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 12px; font-size: 1rem; font-family: inherit; border: 2px solid #D9C49A; background: #F7F2E8; color: #26282A; border-radius: 4px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: 3px solid #9FC4B0; border-color: #333C7A; }
.form-note { font-size: 0.85rem; color: #26282A; }
.submit-btn { background:#333C7A; color:#FDFBF5; border:none; padding: 13px 26px; font-weight:700; font-size:1rem; border-radius:6px; cursor:pointer; font-family:inherit; }
.submit-btn:hover { background:#4A3A2C; }

/* info tiles contact/address */
.contact-panels { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 22px; }
.cpanel { background: #FDFBF5; border-top: 6px solid #9FC4B0; padding: 20px; }
.cpanel h3 { font-size: 1.05rem; }
.cpanel p { margin: 6px 0; }
.cpanel .tel, .cpanel .mail { font-weight: 700; }

/* faq */
.faq { max-width: 1100px; margin: 0 auto; }

/* note: strong, focus-visible accessories */
::selection { background-color: #9FC4B0; color: #26282A; }
summary { cursor: pointer; }
