:root {
  --bg: #f3efe6;
  --paper: #fffdf8;
  --ink: #172033;
  --soft: #3d4a5e;
  --line: #d5cec2;
  --tide: #16384a;
  --tide-press: #0e2836;
  --call: #0c5c38;
  --call-press: #084428;
  --safety: #fff4e0;
  --safety-ink: #6a3d00;
  --focus: #0b5cab;
  --shadow: 0 14px 34px rgba(23, 32, 51, 0.06);
  color-scheme: light;
}

html[data-size="md"] { font-size: 18px; }
html[data-size="lg"] { font-size: 20px; }
html[data-size="xl"] { font-size: 24px; }

* { box-sizing: border-box; }

body {
  margin: 0;
  height: 100dvh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(900px 280px at 0% -10%, rgba(22, 56, 74, 0.08), transparent 55%),
    var(--bg);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-synthesis: none;
  line-height: 1.65;
}

html[lang="zh-Hans"] body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
}
html[lang="ko"] body {
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.65;
}
html[lang="vi"] body {
  font-family: "Be Vietnam Pro", "Hiragino Sans", sans-serif;
  line-height: 1.6;
}
html[lang="fil"] body {
  font-family: "Figtree", "Hiragino Sans", sans-serif;
  line-height: 1.55;
}
html[lang="ne"] body {
  font-family: "Noto Sans Devanagari", "Kohinoor Devanagari", sans-serif;
  line-height: 1.8;
}
html[lang="ne"] .situation-grid button,
html[lang="ne"] .gps,
html[lang="ne"] .call {
  line-height: 1.45;
}

.jp {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
}

.skip {
  position: absolute;
  left: 12px;
  top: -4rem;
  background: white;
  color: var(--ink);
  padding: 0.6rem 0.8rem;
  z-index: 10;
}
.skip:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.top, .stage, .dock {
  width: min(40rem, 100%);
  margin-inline: auto;
}

.top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.6rem;
  row-gap: 0.45rem;
  padding: calc(0.6rem + env(safe-area-inset-top)) 0.9rem 0.45rem;
}

.brand {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.seal {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 2.5px solid var(--tide);
  color: var(--tide);
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: 700;
  font-size: 1.35rem;
  background: white;
  box-shadow: 0 2px 8px rgba(22, 56, 74, 0.08);
}

.brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  display: block;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--soft);
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
}

.tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-left: auto;
  flex-wrap: nowrap;
}


/* Redesigned Language Picker */
.lang-picker {
  display: inline-flex;
  align-items: center;
  position: relative;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  height: 2.25rem;
  padding: 0 0.4rem 0 0.55rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.lang-picker:focus-within {
  border-color: var(--tide);
  box-shadow: 0 0 0 3px rgba(22, 56, 74, 0.12);
}

.lang-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--soft);
  margin-left: 0.2rem;
  pointer-events: none;
  flex: none;
}

.tools .lang {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.tools .lang select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--ink);
  font: inherit;
  font-size: 1.15rem;
  padding: 0 0.1rem;
  cursor: pointer;
  min-height: auto;
  min-width: auto;
  line-height: 1;
}

.lang select, .field select, .area-submit, .gps, .copy, .call, .phone {
  font: inherit;
}

.stage {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 0.4rem 0.9rem 1.2rem;
}

.card, .noscript {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.noscript { padding: 1rem; margin-bottom: 1rem; }

h1, h2, h3, p { margin-top: 0; }

/* Rich Homepage Hero Layout */
.hero-wrap {
  padding: 0.25rem 0 0.5rem;
}

/* 1. Emergency Live Pulse Badge */
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #eaf6ee;
  border: 1px solid #bce4c8;
  color: #0b673b;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 6px rgba(11, 103, 59, 0.08);
}

.pulse-indicator {
  position: relative;
  width: 8px;
  height: 8px;
  display: inline-flex;
}

.pulse-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0c5c38;
}

.pulse-glow {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(12, 92, 56, 0.4);
  animation: pulse-ring 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* 2. Hero Header */
.hero-header {
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(1.75rem, 7.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.45rem;
  overflow-wrap: anywhere;
}

.hero-lead {
  font-size: clamp(0.92rem, 3.6vw, 1.05rem);
  line-height: 1.6;
  color: var(--soft);
  margin: 0;
}

/* 3. Value Proposition Cards (Trust Grid) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.15rem;
}

@media (max-width: 580px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(23, 32, 51, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 32, 51, 0.08);
  }
}

.trust-icon-box {
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.trust-icon-speed {
  background: #e8f3fb;
  color: #0b5cab;
}

.trust-icon-price {
  background: #ecf8f0;
  color: #0c5c38;
}

.trust-icon-shield {
  background: #fef7e6;
  color: #b45309;
}

.trust-card-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.trust-card-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.28;
}

.trust-card-desc {
  font-size: 0.78rem;
  color: var(--soft);
  line-height: 1.35;
  margin-top: 0.15rem;
}





/* 6. Emergency 119 Safety Warning Card */
.safety-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff8f0;
  border: 1.5px solid #fed7aa;
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.5rem;
}

.safety-card-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex: none;
}

.safety-card-body {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.safety-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #9a3412;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.safety-card-text {
  font-size: 0.86rem;
  font-weight: 700;
  color: #7c2d12;
  margin: 0;
}

/* Hide hero-wrap when search results are loaded */
body.has-results .hero-wrap { display: none; }




.situation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.5rem;
  min-width: 0;
}

.dock {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 28px rgba(23, 32, 51, 0.06);
}

body.has-results .dock-scroll { display: none; }

.dock-scroll {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.more-calls {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}
.more-calls[hidden] { display: none; }
.mini-call {
  flex: 0 0 auto;
  min-width: 9.5rem;
  max-width: 16rem;
  min-height: 2.7rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  border: 2px solid var(--call);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  text-decoration: none;
}
.mini-call .jp {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mini-call .num { flex: none; font-weight: 800; white-space: nowrap; }

.dock-pin {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: var(--paper);
}

#call-pin { flex: none; }
#call-pin[hidden] { display: none; }

body.has-results .gps { display: none; }

.pin-call {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.6rem;
  padding: 0.9rem 1.15rem;
  white-space: nowrap;
}
.pin-call .jp {
  font-size: clamp(1.05rem, 4.6vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.pin-call .call-label {
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  line-height: 1;
  white-space: nowrap;
}

.situation-grid button {
  min-width: 0;
  min-height: 3.5rem;
  padding: 0.55rem 0.6rem;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  line-height: 1.3;
  text-align: center;
}

.situation-grid button[aria-pressed="true"] {
  border-color: var(--tide);
  background: white;
  box-shadow: inset 0 0 0 2px var(--tide);
  font-weight: 800;
}

rt { font-size: 0.55em; }
ruby { white-space: nowrap; }

.actions { display: grid; gap: 0.8rem; }

.gps {
  width: 100%;
  min-height: 4.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  border: 0;
  border-radius: 18px;
  background: var(--tide);
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(22, 56, 74, 0.28);
}

.gps:active { background: var(--tide-press); }
.gps:disabled, .area-submit:disabled { opacity: 0.65; }
.gps[hidden] { display: none; }

.manual { display: grid; gap: 0.45rem; }
.manual[hidden] { display: none; }
.manual-title { margin: 0; color: var(--tide); font-weight: 800; }
.manual-title[hidden],
#area-form[hidden] { display: none; }

.area-chip {
  width: 100%;
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0.75rem;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: start;
  cursor: pointer;
}
.area-chip[hidden] { display: none; }
.area-chip-place {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.area-chip-local { color: var(--soft); font-weight: 650; font-size: 0.85em; }
.area-chip-change { flex: none; color: var(--tide); font-weight: 800; }

.fields { display: grid; gap: 0.6rem; }
.field { display: grid; gap: 0.25rem; font-weight: 700; }
.field select {
  width: 100%;
  min-height: 3.3rem;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 0.4rem 0.65rem;
  font-weight: 500;
}

.area-submit {
  width: 100%;
  min-height: 3.2rem;
  border-radius: 14px;
  border: 2px solid var(--tide);
  background: white;
  color: var(--tide);
  font-weight: 800;
  cursor: pointer;
}

.status { font-weight: 700; margin: 0; }
.status:empty { display: none; }
.status[data-kind="error"] {
  color: #6d1c1c;
  border-left: 4px solid #6d1c1c;
  padding-left: 0.6rem;
}

.say {
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 800;
  margin: 0;
}
.local { margin: 0.35rem 0 0; color: var(--soft); }

.results[hidden] { display: none; }
.call-script {
  margin: 0 0 0.45rem;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  background: #e7f1f5;
}

.cards { display: grid; gap: 0.65rem; }
.card { padding: 0.85rem 1rem 0.9rem; }
.card.is-first { border: 2px solid var(--tide); }
.name { font-size: 1.35rem; line-height: 1.3; margin-bottom: 0.2rem; overflow-wrap: anywhere; }
.where { margin: 0; color: var(--soft); }
.distance {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.12rem 0 0;
  font-weight: 800;
  line-height: 1.3;
}
.distance > span:first-child { flex: none; }
.score {
  margin-left: auto;
  color: var(--soft);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
.facts {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--soft);
}
.facts li { margin: 0.08rem 0; }
.distance-note {
  margin: 0.85rem 0 0;
  color: var(--soft);
  font-size: 0.9em;
  line-height: 1.45;
}
.rating strong { font-size: 1.25rem; }
.badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.45rem;
  border-radius: 999px;
  background: #e5f4ec;
  color: var(--call);
  font-size: 0.85rem;
  font-weight: 800;
}
.phone {
  display: block;
  margin: 0.7rem 0 0.45rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 6.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  white-space: nowrap;
}
.call {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  border-radius: 14px;
  background: var(--call);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
}
.call:active, .sticky:active { background: var(--call-press); }
.site {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--tide);
  font-weight: 700;
}

.safety { margin: 1rem 0 0; color: var(--soft); font-weight: 700; }
body:not(.has-results) .safety { display: none; }

.gps:focus-visible, .call:focus-visible, .mini-call:focus-visible { outline-color: #ffe08a; }

/* ── Card clickable ─────────────────────────────────────── */
.card {
  cursor: pointer;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(23,32,51,0.12);
  }
}
.card:active { transform: scale(0.99); }
.card-expand-hint {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tide);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Detail modal ───────────────────────────────────────── */
.detail-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,20,34,0.55);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: backdrop-in 0.22s ease;
}
@keyframes backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.detail-sheet {
  position: relative;
  width: min(42rem, 100%);
  max-height: 90dvh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 24px 24px 0 0;
  padding: 0 1.1rem calc(1.4rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 40px rgba(10,20,34,0.18);
  animation: sheet-up 0.32s cubic-bezier(0.16,1,0.3,1);
}
@keyframes sheet-up {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.detail-handle {
  width: 2.6rem;
  height: 4px;
  background: var(--line);
  border-radius: 99px;
  margin: 0.8rem auto 1rem;
}
.detail-close {
  position: absolute;
  top: 1rem;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--soft);
  padding: 0.3rem;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 300;
}
.detail-name {
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 2.5rem 0.3rem 0;
  overflow-wrap: anywhere;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin-bottom: 0.8rem;
}
.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}
.detail-badge-rank  { background: #e8f3fb; color: #0b5cab; }
.detail-badge-verify{ background: #e5f4ec; color: var(--call); }
.detail-badge-dist  { background: #f3efe6; color: var(--soft); }
.detail-badge-score { background: #fef7e6; color: #b45309; }
.detail-phone-block { margin: 0 0 1rem; }
.detail-phone-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--soft);
  margin-bottom: 0.15rem;
}
.detail-phone-number {
  display: block;
  font-size: clamp(1.5rem, 7vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}
.detail-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4rem;
  border-radius: 16px;
  background: var(--call);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}
.detail-call-btn:active { background: var(--call-press); }
.detail-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0.75rem 0 0;
}
.detail-rows { display: grid; gap: 0; }
.detail-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.91rem;
  line-height: 1.45;
}
.detail-row-label { font-weight: 800; color: var(--soft); font-size: 0.8rem; padding-top: 0.1rem; }
.detail-row-value  { color: var(--ink); word-break: break-word; }
.detail-website-link { color: var(--tide); font-weight: 700; word-break: break-all; }
.detail-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--tide);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.detail-page-link:hover {
  border-color: var(--tide);
  background: #f7fafc;
}

@media (hover: hover) {
  .call:hover, .mini-call:hover { background: var(--call-press); color: white; }
  .gps:hover { background: var(--tide-press); }
  .area-chip:hover { border-color: var(--tide); }
  .detail-call-btn:hover { background: var(--call-press); }
}


@media (min-width: 800px) {
  .dock {
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
  }
}

@media (prefers-contrast: more) {
  :root { --bg: #fff; --ink: #000; --line: #000; --soft: #111; }
}

@media (prefers-reduced-motion: no-preference) {
  .dock { animation: sheet-in 0.55s cubic-bezier(0.16, 1, 0.3, 1); }
  .situation-grid button {
    transition: transform 0.18s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  }
  .situation-grid button:active { transform: scale(0.97); }
  .gps, .call, .area-submit {
    transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease;
  }
  .gps:active, .call:active, .area-submit:active { transform: scale(0.985); }
  .gps.is-busy { animation: breath 1.05s ease-in-out infinite; }
  .manual.is-in { animation: rise-in 0.42s cubic-bezier(0.16, 1, 0.3, 1); }
  .area-chip.is-in { animation: rise-in 0.42s cubic-bezier(0.16, 1, 0.3, 1); }
  .results.is-in { animation: rise-in 0.48s cubic-bezier(0.16, 1, 0.3, 1); }
  .pin-call { animation: rise-in 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
  .mini-call { animation: rise-in 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
}

@keyframes sheet-in {
  from { transform: translateY(18px); }
  to { transform: none; }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes breath {
  50% { filter: brightness(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
