:root {
  color-scheme: light;
  --canvas: #edf5e8;
  --white: #fff;
  --ink: #24221f;
  --muted: #77736d;
  --yellow: #f2dc83;
  --orange: #f2bf82;
  --pink: #eeb0c2;
  --blue: #a6dce8;
  --cyan: #afe3e0;
  --green: #a9d8bf;
  --lime: #dfe7a5;
  --violet: #b7a0dc;
  --purple-pink: #d8b3d4;
  --mint: #addcc8;
  --red: #e8a69d;
  --line: #24221f;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-family: var(--body);
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { min-width: 320px; min-height: 100%; background: var(--canvas); }
body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: var(--canvas);
}
button, input { font: inherit; }
button { min-height: 44px; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; }
[hidden] { display: none !important; }

.app-canvas {
  width: 100%;
  max-width: 760px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  background: var(--white);
}

.unlock {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: max(27px, env(safe-area-inset-top)) 16px max(27px, env(safe-area-inset-bottom));
}
.unlock__card {
  width: min(100%, 520px);
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 4px 0 var(--violet), 0 6px 0 var(--ink), 0 12px 24px rgba(36,34,31,.06);
}
.brand-lockup { display: flex; align-items: center; gap: 11px; }
.brand-lockup__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--violet);
  font-size: 21px;
  box-shadow: none;
}
.brand-lockup__text { display: grid; gap: 1px; }
.brand-lockup__text strong { font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.brand-lockup__text small { color: var(--muted); font-size: 11px; }
.unlock__intro { margin: 43px 0 25px; }
.poster-label { font-family: var(--mono); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.unlock h1 {
  max-width: 450px;
  margin: 8px 0 11px;
  font-size: clamp(38px, 10vw, 58px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.055em;
}
.unlock__intro p { max-width: 420px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.preview-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 28px; }
.preview-stack div {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--white);
}
.preview-stack div:nth-child(1) { box-shadow: 0 4px 0 var(--yellow); }
.preview-stack div:nth-child(2) { box-shadow: 0 4px 0 var(--mint); }
.preview-stack div:nth-child(3) { box-shadow: 0 4px 0 var(--purple-pink); }
.preview-stack span { font-size: 22px; }
.preview-stack strong { font-size: 11px; font-weight: 750; }
.unlock__form label { display: block; margin: 0 0 7px 2px; font-size: 11px; font-weight: 750; }
.password-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.password-row input { min-width: 0; min-height: 50px; padding: 0 14px; border: 2px solid var(--ink); border-radius: 9px; background: var(--white); color: var(--ink); box-shadow: 0 3px 0 var(--mint); }
.password-row button { padding: 0 17px; border: 2px solid var(--ink); border-radius: 9px; background: var(--white); color: var(--ink); font-weight: 800; box-shadow: 0 3px 0 var(--orange), 0 5px 0 var(--ink); cursor: pointer; }
.password-row button:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--orange), 0 3px 0 var(--ink); }
.form-error { min-height: 20px; margin: 8px 2px 0; color: #a22622; font-size: 12px; }
.privacy-note { margin: 16px 2px 0; color: var(--muted); font-size: 11px; line-height: 1.45; }

.guide { min-height: 100dvh; padding-bottom: max(38px, env(safe-area-inset-bottom)); background: var(--white); }
.app-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: max(10px, env(safe-area-inset-top)) 15px 10px;
  border-bottom: 2px solid var(--ink);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.brand-lockup--small .brand-lockup__mark { width: 38px; height: 38px; border-radius: 8px; font-size: 17px; box-shadow: none; }
.brand-lockup--small .brand-lockup__text strong { font-size: 17px; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.access-share { min-height: 42px; display: flex; align-items: center; gap: 8px; padding: 5px 8px 5px 9px; border: 2px solid var(--ink); border-radius: 8px; background: var(--white); color: var(--ink); box-shadow: 0 3px 0 var(--green), 0 5px 0 var(--ink); cursor: pointer; }
.access-share > span:first-child { display: grid; gap: 0; text-align: left; }
.access-share small { font-family: var(--mono); font-size: 7px; font-weight: 850; line-height: 1; letter-spacing: .06em; }
.access-share strong { font-family: var(--mono); font-size: 11px; line-height: 1.25; letter-spacing: .02em; }
.access-share__icon { font-size: 18px; font-weight: 850; line-height: 1; }
.network-status { padding: 6px 8px; border: 2px solid var(--ink); border-radius: 7px; background: var(--yellow); font-size: 9px; font-weight: 800; }
.guide-content { padding: 16px 13px 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; clip-path: inset(50%); }

.arrival-card {
  position: relative;
  margin: 0 0 31px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}
.arrival-card h2 { margin: 0 2px 13px; font-size: clamp(27px, 7.5vw, 34px); font-weight: 800; line-height: 1; letter-spacing: -.045em; }
.arrival-journey {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 5px 0 var(--yellow), 0 7px 0 var(--ink);
}
.arrival-device { min-width: 0; display: grid; grid-template-columns: clamp(76px,20vw,96px) minmax(0,1fr); align-items: center; gap: 13px; padding: 13px; background: var(--white); }
.arrival-device + .arrival-device { border-top: 2px solid var(--ink); }
.arrival-device__image { width: 100%; aspect-ratio: 1; overflow: hidden; border: 2px solid var(--ink); border-radius: 8px; background: var(--yellow); }
.arrival-device__image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.arrival-device__copy { min-width: 0; display: grid; gap: 4px; }
.arrival-device small { font-family: var(--mono); font-size: 8px; font-weight: 850; letter-spacing: .04em; }
.arrival-device strong { overflow-wrap: anywhere; font-size: clamp(18px,5.2vw,27px); font-weight: 850; line-height: 1.05; }
.arrival-device span span { color: var(--muted); font-size: 10px; line-height: 1.35; }
.arrival-black-keypad { background: #fff9dc; }
.arrival-black-keypad small { color: var(--ink); font-size: 9px; }
.arrival-black-keypad .access-code { font-family: var(--mono); font-size: clamp(31px,10vw,44px); letter-spacing: .01em; }
.arrival-black-keypad span span { color: var(--ink); font-weight: 750; }
.arrival-route { display: grid; grid-template-columns: 1fr; margin: 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.arrival-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 10px 13px;
  background: var(--white);
}
.arrival-step + .arrival-step { border-top: 2px solid var(--ink); }
.arrival-step__number { font-family: var(--mono); font-size: 9px; font-weight: 800; }
.arrival-step__copy { display: grid; gap: 2px; }
.arrival-step__copy strong { font-size: 14px; font-weight: 850; }
.arrival-step__copy small { color: var(--muted); font-size: 11px; line-height: 1.35; }

.arrival-video {
  overflow: hidden;
  margin: 18px 0 0;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--white);
}
.arrival-video summary { min-height: 48px; display: flex; align-items: center; padding: 0 13px; font-size: 12px; font-weight: 850; cursor: pointer; list-style: none; }
.arrival-video summary::-webkit-details-marker { display: none; }
.arrival-video video { display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--ink); object-fit: cover; }
.arrival-video[open] summary { border-bottom: 2px solid var(--ink); }
.floor-guide { margin-top: 18px; }
.floor-guide__label { display: inline-block; margin: 0 0 7px 2px; font-family: var(--mono); font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.floor-shortcuts { display: grid; grid-template-columns: 1fr; overflow: hidden; border: 2px solid var(--ink); border-radius: 9px; box-shadow: 0 4px 0 var(--green), 0 6px 0 var(--ink); }
.floor-shortcut { min-width: 0; min-height: 50px; display: grid; grid-template-columns: 48px 118px minmax(0,1fr); align-items: center; gap: 9px; padding: 7px 11px; background: var(--white); }
.floor-shortcut + .floor-shortcut { border-top: 2px solid var(--ink); }
.floor-shortcut strong { font-family: var(--mono); font-size: 21px; line-height: 1; }
.floor-shortcut span { font-size: 11px; font-weight: 850; }
.floor-shortcut small { color: var(--muted); font-size: 9px; line-height: 1.3; }
.floor-shortcut--home { background: #fff7cf; }
.floor-shortcut--muted { background: #f2f1ee; color: #9a9791; }
.floor-shortcut--muted small { color: #aaa7a1; }
.floor-shortcut--courtyard { background: #e7f5e5; }
.floor-shortcut--street { background: #fff0dc; }
.floor-shortcut--garage { background: #eee8f8; }

.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 3px 0 39px; }
.quick-action {
  --action-shadow: var(--orange);
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 79px;
  padding: 11px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 4px 0 var(--action-shadow), 0 6px 0 var(--ink);
  cursor: pointer;
  transition: transform .14s ease;
}
.quick-action--nearby { --action-shadow: var(--mint); }
.quick-action:hover { transform: translateY(-2px); }
.quick-action:active { transform: translateY(1px); }
.quick-action__icon { width: 32px; height: 32px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 7px; background: var(--action-shadow); font-size: 17px; }
.quick-action > span:nth-child(2) { display: grid; gap: 3px; }
.quick-action small { font-family: var(--mono); font-size: 7px; font-weight: 750; letter-spacing: .03em; }
.quick-action strong { font-size: 16px; font-weight: 800; letter-spacing: -.03em; }

.index-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 0 3px 13px; }
.index-heading .poster-label { display: inline-block; padding: 5px 7px; border: 2px solid var(--ink); border-radius: 6px; background: var(--yellow); }
.index-heading h2 { margin: 6px 0 0; font-size: 31px; font-weight: 800; line-height: .96; letter-spacing: -.05em; }
.result-count { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; border: 2px solid var(--ink); border-radius: 8px; background: var(--white); color: var(--ink); font-size: 19px; font-weight: 800; box-shadow: 0 4px 0 var(--violet), 0 6px 0 var(--ink); }
.search-box { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 9px; min-height: 49px; margin-bottom: 15px; padding: 0 13px; border: 2px solid var(--ink); border-radius: 8px; background: var(--white); box-shadow: 0 4px 0 var(--yellow), 0 6px 0 var(--ink); }
.search-box > span:first-child { font-size: 20px; }
.search-box input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-box input::placeholder { color: #898681; }
.category-rail { display: flex; gap: 8px; overflow-x: auto; margin: 0 -13px 15px; padding: 0 13px 6px; scrollbar-width: none; scroll-snap-type: x proximity; }
.category-rail--top { position: sticky; z-index: 15; top: 60px; margin-bottom: 27px; padding-top: 8px; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.category-rail::-webkit-scrollbar { display: none; }
.category-chip { flex: 0 0 auto; min-height: 38px; padding: 0 10px; border: 2px solid var(--ink); border-radius: 8px; background: var(--white); color: var(--ink); font-size: 10px; font-weight: 800; scroll-snap-align: start; cursor: pointer; box-shadow: 0 3px 0 var(--tone, var(--yellow)), 0 5px 0 var(--ink); }
.category-chip span { margin-right: 5px; }
.category-chip[aria-pressed="true"] { background: var(--tone, var(--yellow)); color: var(--ink); box-shadow: 0 3px 0 var(--tone, var(--yellow)), 0 5px 0 var(--ink); }

.tone-yellow { --tone: var(--yellow); }
.tone-blue { --tone: var(--blue); }
.tone-coral { --tone: var(--orange); }
.tone-green { --tone: var(--green); }
.tone-violet { --tone: var(--violet); }
.tone-mint { --tone: var(--mint); }
.tone-red { --tone: var(--red); }

.instruction-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 17px 12px; padding: 7px 0 9px; }
.instruction-card {
  position: relative;
  min-width: 0;
  min-height: 246px;
  display: grid;
  grid-template-rows: 145px minmax(101px,auto);
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 4px 0 var(--tone), 0 6px 0 var(--ink);
  cursor: pointer;
  isolation: isolate;
  transition: transform .14s ease;
}
.instruction-card:hover { transform: translateY(-2px); }
.instruction-card:active { transform: translateY(1px); }
.instruction-card__image { position: relative; z-index: 0; grid-row: 1; overflow: hidden; border-bottom: 2px solid var(--ink); background: var(--tone); }
.instruction-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .24s ease; }
.instruction-card:hover .instruction-card__image img { transform: scale(1.025); }
.image-placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 52px; }
.instruction-card__category, .instruction-card__number, .instruction-card__open, .instruction-card__warning { position: absolute; z-index: 2; }
.instruction-card__category { top: 8px; left: 8px; padding: 4px 6px; border: 2px solid var(--ink); border-radius: 6px; background: var(--tone); font-family: var(--mono); font-size: 7px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.instruction-card__number { top: 8px; right: 8px; width: 27px; height: 27px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 7px; background: var(--white); font-family: var(--mono); font-size: 9px; font-weight: 800; box-shadow: 0 3px 0 var(--tone), 0 5px 0 var(--ink); }
.instruction-card__warning { top: 113px; left: 8px; max-width: calc(100% - 16px); overflow: hidden; padding: 4px 6px; border: 2px solid var(--ink); border-radius: 6px; background: var(--tone); font-size: 7px; font-weight: 800; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.instruction-card__copy { position: relative; z-index: 1; grid-row: 2; display: grid; align-content: start; gap: 5px; min-width: 0; padding: 12px 36px 11px 10px; background: var(--white); }
.instruction-card__copy strong { font-size: 16px; font-weight: 800; line-height: .99; letter-spacing: -.035em; }
.instruction-card__summary { overflow: hidden; color: var(--muted); font-size: 10px; line-height: 1.35; text-overflow: ellipsis; }
.instruction-card__open { right: 9px; bottom: 10px; width: 25px; height: 25px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--ink); color: var(--white); font-size: 20px; font-weight: 700; line-height: 1; }

.empty-state { grid-column: 1/-1; min-height: 210px; display: grid; place-items: center; align-content: center; gap: 9px; border: 2px dashed var(--ink); border-radius: 10px; background: var(--white); box-shadow: 0 4px 0 var(--yellow), 0 6px 0 var(--ink); }
.empty-state > span { font-size: 30px; }
.empty-state button { padding: 0 14px; border: 2px solid var(--ink); border-radius: 8px; background: var(--yellow); font-weight: 800; }

.sheet { width: min(100%,760px); max-width: none; height: min(92dvh,900px); max-height: none; margin: auto auto 0; padding: 0; border: 3px solid var(--ink); border-bottom: 0; border-radius: 17px 17px 0 0; background: var(--white); color: var(--ink); box-shadow: 0 -5px 0 var(--violet), 0 -7px 0 var(--ink); }
.sheet::backdrop { background: rgba(36,34,31,.48); backdrop-filter: blur(3px); }
.sheet__frame { position: relative; min-height: 100%; }
.sheet__close { position: sticky; z-index: 3; top: 12px; left: calc(100% - 56px); width: 43px; padding: 0; border: 2px solid var(--ink); border-radius: 8px; background: var(--white); color: var(--ink); box-shadow: 0 3px 0 var(--orange), 0 5px 0 var(--ink); font-size: 24px; font-weight: 800; cursor: pointer; }
.toast { position: fixed; z-index: 40; left: 50%; bottom: 24px; max-width: calc(100% - 28px); transform: translate(-50%,12px); padding: 10px 13px; border: 2px solid var(--ink); border-radius: 8px; background: var(--ink); color: var(--white); font-size: 11px; font-weight: 800; opacity: 0; pointer-events: none; transition: opacity .16s ease, transform .16s ease; }
.toast--visible { transform: translate(-50%,0); opacity: 1; }
.dialog-open { overflow: hidden; }
.sheet-detail { min-height: 100%; background: var(--white); }
.sheet-hero { height: auto; display: grid; place-items: center; margin-top: -44px; overflow: hidden; padding: 14px; border-bottom: 2px solid var(--ink); background: var(--tone); }
.sheet-hero img { display: block; width: auto; max-width: 100%; height: auto; max-height: min(52dvh,420px); object-fit: contain; border: 2px solid var(--ink); border-radius: 8px; }
.sheet-hero > span { width: 100%; min-height: 200px; display: grid; place-items: center; font-size: 86px; }
.detail-video { margin-top: -44px; border-bottom: 2px solid var(--ink); background: var(--ink); }
.detail-video video { display: block; width: 100%; max-height: min(54dvh,520px); background: var(--ink); object-fit: contain; }
.sheet-detail__body { position: relative; padding: 24px 18px 42px; background: var(--white); }
.detail-category { display: inline-flex; align-items: center; padding: 5px 7px; border: 2px solid var(--ink); border-radius: 6px; background: var(--tone); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.sheet-detail h2, .collection-sheet h2 { max-width: 590px; margin: 12px 0 20px; font-size: clamp(34px,9vw,52px); font-weight: 800; line-height: .93; letter-spacing: -.05em; }
.detail-warning { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; padding: 11px; border: 2px solid var(--ink); border-radius: 8px; background: var(--tone); box-shadow: 0 4px 0 var(--tone), 0 6px 0 var(--ink); }
.detail-warning strong { font-family: var(--mono); font-size: 10px; letter-spacing: .05em; }
.detail-warning span { font-size: 13px; font-weight: 750; }
.detail-steps { display: grid; gap: 10px; margin: 27px 0 0; padding: 0; list-style: none; }
.detail-step { display: grid; grid-template-columns: 43px 1fr; gap: 10px; padding: 13px; border: 2px solid var(--ink); border-radius: 8px; background: var(--white); box-shadow: 0 4px 0 var(--tone), 0 6px 0 var(--ink); }
.step-number { font-family: var(--mono); font-size: 17px; font-weight: 800; line-height: 1; }
.detail-step p { margin: 0; font-size: 14px; line-height: 1.5; }

.collection-sheet { min-height: 100%; padding: 58px 17px 38px; background: var(--canvas); color: var(--ink); }
.collection-sheet--nearby { background: var(--canvas); }
.collection-sheet > .poster-label { display: inline-block; padding: 5px 7px; border: 2px solid var(--ink); border-radius: 6px; background: var(--orange); }
.collection-sheet--nearby > .poster-label { background: var(--mint); }
.collection-intro { max-width: 470px; margin: -7px 0 24px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.contact-list, .place-list { display: grid; gap: 13px; }
.contact-card { padding: 13px; border: 2px solid var(--ink); border-radius: 9px; background: var(--white); box-shadow: 0 4px 0 var(--yellow), 0 6px 0 var(--ink); }
.contact-card > div:first-child { display: flex; align-items: center; gap: 11px; }
.contact-avatar { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 2px solid var(--ink); border-radius: 8px; background: var(--violet); color: var(--white); font-size: 16px; font-weight: 800; }
.contact-card > div:first-child > span:last-child { display: grid; gap: 3px; }
.contact-card strong { font-size: 15px; font-weight: 800; }
.contact-card small { color: var(--muted); font-size: 10px; }
.contact-tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 13px 0; }
.contact-tags span { padding: 5px 7px; border: 2px solid var(--ink); border-radius: 6px; background: var(--cyan); font-size: 8px; font-weight: 800; }
.contact-card a { min-height: 44px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; border: 2px solid var(--ink); border-radius: 8px; background: var(--orange); color: var(--ink); font-weight: 800; text-decoration: none; }
.contact-card a span { font-size: 10px; font-weight: 600; }
.missing-contact { min-height: 44px; display: grid; place-items: center; border: 2px dashed var(--ink); border-radius: 8px; font-size: 10px; font-weight: 800; }
.place-card { min-height: 76px; display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 11px; padding: 10px; border: 2px solid var(--ink); border-radius: 9px; background: var(--white); color: var(--ink); box-shadow: 0 4px 0 var(--mint), 0 6px 0 var(--ink); text-decoration: none; }
.place-card__icon { width: 46px; height: 46px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 8px; background: var(--yellow); font-size: 21px; }
.place-card > span:nth-child(2) { display: grid; gap: 2px; }
.place-card small { font-family: var(--mono); font-size: 7px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.place-card strong { font-size: 15px; font-weight: 800; }
.place-card em { color: var(--muted); font-size: 9px; font-style: normal; }

@media (min-width:780px) {
  body { padding: 28px 0; }
  .app-canvas { min-height: calc(100vh - 56px); border: 2px solid var(--ink); border-radius: 16px; overflow: clip; box-shadow: 0 14px 42px rgba(36,34,31,.1); }
  .unlock, .guide { min-height: calc(100vh - 56px); }
}

@media (max-width:360px) {
  .unlock { padding-inline: 10px; }
  .unlock__card { padding: 17px; }
  .password-row { grid-template-columns: 1fr; }
  .password-row button { width: 100%; }
  .preview-stack div { min-height: 84px; padding: 9px; }
  .guide-content { padding-inline: 9px; }
  .category-rail { margin-inline: -9px; padding-inline: 9px; }
  .arrival-device { grid-template-columns: 76px minmax(0,1fr); padding: 10px; }
  .floor-shortcut { grid-template-columns: 40px 92px minmax(0,1fr); gap: 7px; padding-inline: 8px; }
  .floor-shortcut strong { font-size: 19px; }
  .floor-shortcut span { font-size: 10px; }
  .floor-shortcut small { font-size: 9px; }
  .quick-actions { gap: 10px; }
  .quick-action { grid-template-columns: auto 1fr; min-height: 76px; padding: 9px; }
  .quick-action > span:last-child { display: none; }
  .instruction-grid { gap: 17px 9px; }
  .instruction-card { min-height: 228px; grid-template-rows: 134px minmax(94px,auto); }
  .instruction-card__warning { top: 103px; }
  .instruction-card__copy { padding: 11px 33px 10px 9px; }
  .instruction-card__copy strong { font-size: 15px; }
}

@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
