:root {
  --ink: #1b2230;
  --ink-soft: #445064;
  --muted: #657084;
  --line: #dce1e8;
  --line-strong: #b8c0cc;
  --surface: #ffffff;
  --surface-soft: #f0f3f6;
  --canvas: #f5f6f8;
  --nav: #17212e;
  --nav-soft: #243243;
  --primary: #177f74;
  --primary-dark: #11645d;
  --primary-soft: #e0f1ed;
  --warning: #a75a16;
  --warning-soft: #fcebd8;
  --success: #11645d;
  --success-soft: #e0f1ed;
  --focus: #2368b3;
  --shadow: 0 10px 30px rgb(28 42 58 / 6%);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: clip;
  background: var(--canvas);
}

body {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
select {
  font: inherit;
}

button,
select,
label[for] {
  cursor: pointer;
}

button {
  border: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 5px;
  background: var(--nav);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-root {
  min-height: 100vh;
  min-height: 100dvh;
}

.loading-state {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  align-content: center;
  justify-items: start;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 22px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 7px;
  background: var(--nav);
  color: #fff;
  font-size: 23px;
  font-weight: 900;
}

.eyebrow {
  margin: 18px 0 7px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.loading-state h1 {
  max-width: 360px;
  margin: 0;
  font-size: 28px;
  letter-spacing: -.04em;
  line-height: 1.3;
}

.entry-gate {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  padding:
    calc(24px + var(--safe-top))
    calc(18px + var(--safe-right))
    calc(24px + var(--safe-bottom))
    calc(18px + var(--safe-left));
}

.entry-panel {
  width: min(100%, 460px);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.entry-index {
  display: inline-flex;
  border-radius: 4px;
  padding: 5px 7px;
  background: var(--nav);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
}

.entry-panel .eyebrow {
  margin-top: 24px;
}

.entry-panel h1 {
  margin: 0;
  font-size: clamp(30px, 9vw, 42px);
  letter-spacing: -.045em;
  line-height: 1.15;
}

.entry-description {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.team-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.team-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 9px 38px 9px 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.team-select:focus {
  border-color: var(--primary);
}

.primary-button,
.secondary-button {
  min-height: 44px;
  border-radius: 5px;
  padding: 10px 14px;
  font-weight: 800;
}

.primary-button {
  width: 100%;
  margin-top: 10px;
  background: var(--primary);
  color: #fff;
}

.primary-button:hover {
  background: var(--primary-dark);
}

.entry-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.portal-toolbar {
  margin: 0 18px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.portal-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 12px;
}

.portal-toolbar-label {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.portal-toolbar strong {
  display: block;
  font-size: 14px;
}

.secondary-button {
  min-height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 12px;
}

.install-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.install-button .icon {
  width: 16px;
  height: 16px;
}

.installed-label {
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
}

.install-help {
  margin: 0 12px 12px;
  border-radius: 5px;
  padding: 11px 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.install-help strong {
  font-size: 12px;
}

.install-help p {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.55;
}

.page-shell {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 0 0 calc(148px + var(--safe-bottom));
}

.page-header {
  padding:
    26px
    calc(18px + var(--safe-right))
    18px
    calc(18px + var(--safe-left));
}

.header-row {
  display: flex;
  align-items: center;
  gap: 11px;
}

.header-copy {
  min-width: 0;
}

.header-kicker {
  margin: 0 0 2px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .07em;
}

.header-company {
  overflow: hidden;
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-card {
  margin: 0 18px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--nav);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-main {
  padding: 24px 22px 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
}

.hero-chip {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 4px;
  padding: 5px 9px;
  background: rgb(255 255 255 / 9%);
  color: #e9f6f5;
  font-size: 12px;
  font-weight: 750;
}

.hero-main h1 {
  margin: 0;
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1.16;
  letter-spacing: -.045em;
}

.hero-main p {
  max-width: 470px;
  margin: 13px 0 0;
  color: #d9e7ef;
  font-size: 14px;
  line-height: 1.65;
}

.hero-staff {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 5%);
}

.hero-staff-item {
  min-width: 0;
  padding: 14px 16px 15px;
}

.hero-staff-item + .hero-staff-item {
  border-left: 1px solid rgb(255 255 255 / 14%);
}

.hero-staff-label {
  display: block;
  margin-bottom: 4px;
  color: #aac6d3;
  font-size: 11px;
  font-weight: 750;
}

.hero-staff-name {
  display: block;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bottom-navigation {
  position: fixed;
  z-index: 40;
  right: max(var(--safe-right), calc((100vw - 780px) / 2));
  bottom: 0;
  left: max(var(--safe-left), calc((100vw - 780px) / 2));
  border: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  padding-bottom: var(--safe-bottom);
  background: rgb(23 33 46 / 97%);
  box-shadow: 0 -10px 30px rgb(23 33 46 / 18%);
  color: #fff;
  backdrop-filter: blur(14px);
}

.bottom-day-navigation {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  padding: 7px 8px 6px;
}

.bottom-day-tab {
  min-width: 0;
  min-height: 44px;
  border-radius: 5px;
  padding: 5px 2px;
  background: transparent;
  color: #aebaca;
}

.bottom-day-tab[aria-selected="true"] {
  background: var(--primary);
  color: #fff;
}

.bottom-day-date,
.bottom-day-label {
  display: block;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bottom-day-date {
  font-size: 13px;
  font-weight: 900;
}

.bottom-day-label {
  margin-top: 1px;
  font-size: 9px;
  font-weight: 750;
}

.bottom-action-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 7px 8px 8px;
}

.bottom-action {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 5px;
  background: var(--nav-soft);
  color: #dce8ee;
  font-size: 12px;
  font-weight: 850;
}

.bottom-action[aria-current="page"] {
  border-color: #49b9ad;
  background: #184d49;
  color: #fff;
}

.bottom-action .icon {
  width: 18px;
  height: 18px;
}

.emergency-action {
  color: #ffe6cf;
}

.content-section {
  padding: 24px 14px 0;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 4px 15px;
}

.section-heading h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.035em;
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  flex: 0 0 auto;
  align-items: center;
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 850;
}

.status-pill.confirmed {
  background: var(--success-soft);
  color: var(--success);
}

.status-pill.conditional {
  background: var(--warning-soft);
  color: var(--warning);
}

.status-pill.neutral {
  background: #e9edf2;
  color: var(--ink-soft);
}

.movement-card,
.schedule-card,
.visit-card,
.staff-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 5px 18px rgb(16 42 67 / 5%);
}

.movement-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  margin-bottom: 13px;
  padding: 16px;
}

.company-detail-block {
  margin-top: 18px;
}

.detail-heading {
  margin: 0 4px 10px;
}

.detail-heading h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -.025em;
}

.detail-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.dining-option-grid {
  display: grid;
  gap: 10px;
}

.dining-option-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: 104px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 5px 18px rgb(16 42 67 / 5%);
}

.dining-option-photo {
  display: block;
  min-height: 176px;
  background: var(--surface-soft);
  cursor: pointer;
}

.dining-option-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-option-body {
  min-width: 0;
  padding: 13px;
}

.dining-option-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px 8px;
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 850;
}

.dining-option-body h4 {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.dining-option-menu,
.dining-option-note {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.dining-option-price {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 12px;
}

.dining-option-link {
  display: inline-flex;
  margin-top: 9px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 850;
  text-underline-offset: 3px;
  cursor: pointer;
}

.visit-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
  padding: 16px;
}

.visit-card-copy {
  min-width: 0;
}

.visit-group {
  display: inline-flex;
  margin-bottom: 7px;
  border-radius: 4px;
  padding: 4px 7px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 850;
}

.visit-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

.visit-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.visit-language {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 4px;
  padding: 4px 7px;
  background: #eef2f6;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
}

.map-link {
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 8px 10px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.map-link:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.movement-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.movement-title {
  margin: 0;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.45;
}

.movement-note {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.schedule-card {
  overflow: hidden;
}

.schedule-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
}

.schedule-item + .schedule-item {
  border-top: 1px solid var(--line);
}

.schedule-time {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.schedule-copy h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -.015em;
}

.schedule-copy p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.preparing-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: var(--surface-soft);
}

.preparing-mark {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 auto 11px;
  place-items: center;
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
}

.preparing-card h3 {
  margin: 0;
  font-size: 18px;
}

.preparing-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.staff-grid {
  display: grid;
  gap: 12px;
}

.staff-card {
  padding: 17px;
}

.staff-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.staff-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: var(--nav);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.staff-role {
  margin: 0 0 2px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 850;
}

.staff-name {
  margin: 0;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.4;
}

.staff-language {
  display: inline-flex;
  margin-top: 13px;
  border-radius: 4px;
  padding: 5px 9px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
}

.staff-scope {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.staff-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 9px 12px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.staff-call.pending {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--muted);
}

.staff-contact-note {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.staff-kakao {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  border-radius: 5px;
  padding: 7px 8px 7px 10px;
  background: #fff7bf;
  color: #473f00;
  font-size: 11px;
  font-weight: 800;
}

.staff-kakao button {
  min-height: 30px;
  border: 1px solid #d5c13a;
  padding: 5px 8px;
  background: #fee500;
  color: #191919;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}

.interpreter-profile-card {
  min-width: 0;
  grid-column: 1 / -1;
}

.interpreter-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.interpreter-photo {
  width: 88px;
  height: 104px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-soft);
  object-fit: cover;
  object-position: center top;
}

.interpreter-profile-title {
  min-width: 0;
  padding-top: 2px;
}

.interpreter-experience {
  display: inline-flex;
  margin-top: 9px;
  border-radius: 4px;
  padding: 5px 8px;
  background: var(--nav);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.interpreter-assignment {
  margin: 14px 0 0;
  border-radius: 5px;
  padding: 10px 11px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.55;
}

.interpreter-profile-card .staff-call {
  width: 100%;
  box-sizing: border-box;
}

.interpreter-details {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.interpreter-details summary {
  width: fit-content;
  cursor: pointer;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.interpreter-details summary:focus-visible {
  border-radius: 3px;
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.interpreter-details-body {
  padding-top: 2px;
}

.interpreter-facts {
  display: grid;
  gap: 9px;
  margin: 15px 0 0;
}

.interpreter-facts > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 9px;
}

.interpreter-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.interpreter-facts dd {
  min-width: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.interpreter-profile-section {
  margin-top: 15px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.interpreter-profile-label {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.interpreter-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.interpreter-specialties span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 7px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
}

.interpreter-highlights {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.interpreter-highlights li::marker {
  color: var(--primary);
}

.support-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  padding: 17px;
  background: #f9fbfc;
}

.support-card h2 {
  margin: 0;
  font-size: 16px;
}

.support-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.safety-motion-card,
.safety-guide-card,
.consular-card,
.operator-contact-card,
.contact-message-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 0 5px 18px rgb(16 42 67 / 5%);
}

.safety-motion-card {
  overflow: hidden;
  margin-bottom: 13px;
}

.safety-lottie {
  position: relative;
  height: 145px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #edf7f5 0%, #f7fafb 100%);
}

.safety-lottie > svg {
  position: relative;
  z-index: 2;
}

.safety-static {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 15%;
  color: var(--primary);
}

.safety-static .icon {
  width: 42px;
  height: 42px;
}

.safety-static .icon + .icon {
  margin-left: 22px;
}

.safety-lottie.lottie-ready .safety-static {
  opacity: 0;
}

.safety-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: safety-step;
  list-style: none;
}

.safety-flow li {
  display: grid;
  min-height: 58px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  counter-increment: safety-step;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.4;
}

.safety-flow li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  content: counter(safety-step);
  font-size: 10px;
  font-weight: 900;
}

.safety-flow li:nth-child(even) {
  border-left: 1px solid var(--line);
}

.safety-flow li:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.safety-grid {
  display: grid;
  gap: 11px;
}

.safety-guide-card {
  padding: 16px;
}

.safety-guide-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.safety-guide-heading h3 {
  margin: 0;
  font-size: 16px;
}

.safety-guide-card ul,
.contact-message-card ul {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding-left: 19px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.safety-guide-card li::marker,
.contact-message-card li::marker {
  color: var(--primary);
}

.consular-card {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding: 17px;
  background: var(--nav);
  color: #fff;
}

.contact-kicker {
  margin: 0 0 5px;
  color: #75d1c7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
}

.consular-card h3,
.operator-contact-card h3,
.contact-message-card h3 {
  margin: 0;
  font-size: 18px;
}

.consular-card p:not(.contact-kicker) {
  margin: 6px 0 0;
  color: #c9d6df;
  font-size: 12px;
  line-height: 1.55;
}

.consular-actions {
  display: grid;
  gap: 7px;
}

.consular-actions a {
  min-height: 42px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 5px;
  padding: 11px 12px;
  background: rgb(255 255 255 / 8%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.operator-contact-card {
  padding: 20px;
}

.operator-phone {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.025em;
  text-decoration: none;
}

.save-format,
.kakao-link-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.operator-kakao-id {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 17px;
}

.contact-action {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 9px 10px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.kakao-copy-action {
  grid-column: 1 / -1;
  border-color: #d5c13a;
  background: #fee500;
  color: #191919;
}

.kakao-action {
  grid-column: 1 / -1;
  border-color: #e2c800;
  background: #fee500;
  color: #191919;
}

.kakao-action.pending {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--muted);
}

.contact-message-card {
  margin-top: 12px;
  padding: 17px;
}

.contact-message-card ul {
  margin-top: 11px;
}

.page-footer {
  padding: 28px 18px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.noscript {
  margin: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 16px;
  background: #fff;
  color: var(--ink-soft);
}

@media (min-width: 640px) {
  .hero-card {
    margin: 0 22px;
  }

  .content-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dining-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consular-card {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
    align-items: center;
  }
}

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