:root {
  --bg: #f7f4ee;
  --ink: #151515;
  --muted: #5f625f;
  --line: rgba(21, 21, 21, .12);
  --paper: #fffaf1;
  --orange: #f36d21;
  --green: #146b4b;
  --blue: #2857a4;
  --charcoal: #202522;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.landing-shell {
  min-height: 100vh;
  background: var(--bg);
  transition: filter .24s ease, transform .24s ease;
  transform-origin: center top;
}
body.landing-modal-open .landing-shell {
  filter: blur(6px);
  transform: scale(.985);
  pointer-events: none;
}
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(247, 244, 238, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(21, 21, 21, .08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
  min-width: 0;
  flex: 0 1 auto;
}
.site-brand-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: contain;
  border-radius: 14px;
}
.site-brand-text {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 950;
  line-height: 1.15;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 800;
}
.nav a, .nav button {
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.nav .login-btn {
  background: var(--ink);
  color: #fff;
  padding-inline: 16px;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(24px, 5vw, 68px);
  padding: 112px clamp(18px, 5vw, 70px) 58px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21,21,21,.07) 1px, transparent 1px),
    linear-gradient(rgba(21,21,21,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .42;
  pointer-events: none;
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 950;
}
.hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(48px, 8.2vw, 118px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 950;
}
.hero-sub {
  margin: 26px 0 0;
  max-width: 760px;
  color: #373b38;
  font-size: clamp(21px, 2.6vw, 36px);
  line-height: 1.34;
  font-weight: 850;
}
.hero-actions, .section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}
.btn.primary { background: var(--ink); color: #fff; }
.btn.orange { background: var(--orange); border-color: var(--orange); color: #fff; }
.stepup-disabled-link,
.stepup-cta-disabled,
.is-disabled[aria-disabled="true"] {
  cursor: not-allowed !important;
  opacity: .48;
  color: #8b9490 !important;
  background: rgba(148, 163, 184, .16) !important;
  border-color: rgba(148, 163, 184, .28) !important;
  box-shadow: none !important;
  text-decoration: none !important;
  pointer-events: auto;
}
.stepup-disabled-link:hover,
.stepup-cta-disabled:hover,
.is-disabled[aria-disabled="true"]:hover {
  color: #8b9490 !important;
  background: rgba(148, 163, 184, .16) !important;
  border-color: rgba(148, 163, 184, .28) !important;
  transform: none !important;
}
.facility-home-start-disabled,
.facility-home-start-disabled:hover,
.facility-home-start-disabled:disabled {
  cursor: not-allowed;
  opacity: .62;
  color: #4b5563;
  background: rgba(255, 255, 255, .42);
  border-color: rgba(21, 21, 21, .18);
  box-shadow: none;
  transform: none;
}
.system-stack {
  width: min(430px, 100%);
  margin-left: auto;
  display: grid;
  gap: 16px;
  perspective: 900px;
}
.system-card {
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(21,21,21,.13);
  border-radius: 8px;
  background: rgba(255,250,241,.9);
  box-shadow: 0 22px 48px rgba(21,21,21,.13);
  transform: rotate(-1.6deg);
  animation: floatCard 5s ease-in-out infinite;
}
.system-card:nth-child(2) { transform: translateX(34px) rotate(1.2deg); animation-delay: .6s; }
.system-card:nth-child(3) { transform: translateX(4px) rotate(-.8deg); animation-delay: 1.1s; }
.system-card strong {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  font-weight: 950;
}
.system-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}
.mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-row .system-card { min-height: 92px; }
@keyframes floatCard {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
.facility-section {
  padding: 70px clamp(18px, 5vw, 70px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.facility-title-row {
  display: flex;
  align-items: end;
  gap: 18px;
  flex-wrap: wrap;
}
.facility-filter-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.facility-type-select {
  min-height: 36px;
  padding: 7px 32px 7px 11px;
  border: 1px solid rgba(21,21,21,.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  outline: none;
}
.section-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-weight: 950;
}
.section-title {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 74px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}
.section-desc {
  margin: 12px 0 0;
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.55;
  font-weight: 700;
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.facility-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 10px;
  border: 1px solid rgba(21,21,21,.12);
  border-radius: 8px;
  background: #fbfaf7;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.facility-card:hover {
  transform: translateY(-3px);
  border-color: rgba(243,109,33,.42);
  box-shadow: 0 14px 28px rgba(21,21,21,.08);
}
.facility-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
  font-weight: 950;
  font-size: 19px;
}
.facility-logo img { width: 100%; height: 100%; object-fit: cover; }
.facility-name {
  min-width: 0;
  font-weight: 950;
  line-height: 1.28;
  font-size: 17px;
}
.facility-card.is-hidden { display: none; }
.empty-note {
  padding: 26px;
  border: 1px dashed rgba(21,21,21,.2);
  border-radius: 8px;
  color: var(--muted);
  background: #fbfaf7;
  font-weight: 800;
}
.story {
  background: var(--bg);
}
.story-panel {
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: 82px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}
.story-panel:nth-child(even) { background: #ede7dc; }
.story h2 {
  margin: 0;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
}
.story p {
  margin: 20px 0 0;
  max-width: 560px;
  color: #4a4d49;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
  font-weight: 800;
}
.scene {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 14px;
}
.paper-card, .phone-card, .report-card {
  border: 1px solid rgba(21,21,21,.14);
  border-radius: 8px;
  background: #fffaf1;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(21,21,21,.12);
}
.paper-card strong, .phone-card strong, .report-card strong {
  display: block;
  font-size: 28px;
  font-weight: 950;
}
.line {
  height: 12px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(21,21,21,.12);
}
.line.short { width: 58%; }
.step-pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
}
.ledger-mock {
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 10px;
  background: #0b111a;
  color: #d8e2ef;
  box-shadow: 0 24px 52px rgba(15,23,42,.28);
  font-size: 13px;
}
.ledger-title {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(148,163,184,.16);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}
.ledger-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 3px;
  background: var(--orange);
}
.ledger-head, .ledger-row {
  display: grid;
  grid-template-columns: 48px 128px 96px 64px 92px minmax(160px,1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148,163,184,.11);
}
.ledger-head {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.ledger-row span { color: #9fb0c6; }
.ledger-row strong {
  color: #edf5ff;
  font-size: 14px;
  filter: blur(.15px);
}
.ledger-row em {
  justify-self: start;
  padding: 4px 10px;
  border-radius: 999px;
  font-style: normal;
  font-weight: 950;
  font-size: 12px;
}
.ledger-row .give { color: #4ade80; background: rgba(34,197,94,.14); border: 1px solid rgba(34,197,94,.38); }
.ledger-row .take { color: #fb7185; background: rgba(239,68,68,.14); border: 1px solid rgba(239,68,68,.38); }
.ledger-row b { font-weight: 950; }
.ledger-row .plus { color: #4ade80; }
.ledger-row .minus { color: #fb7185; }
.service-pair {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.service-screen {
  min-height: 330px;
  padding: 20px;
  border: 1px solid rgba(21,21,21,.13);
  border-radius: 10px;
  background: #fffaf1;
  box-shadow: 0 18px 36px rgba(21,21,21,.12);
}
.screen-label {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
}
.service-screen label {
  display: block;
  margin: 12px 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}
.fake-input {
  min-height: 42px;
  padding: 11px 12px;
  border: 1px solid rgba(21,21,21,.12);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}
.step-control {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}
.step-control button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 950;
}
.step-control strong {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 8px;
  background: rgba(20,107,75,.12);
  color: var(--green);
}
.save-button {
  display: grid;
  place-items: center;
  min-height: 42px;
  margin-top: 14px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
}
.activity-card {
  padding: 16px;
  border: 1px solid rgba(21,21,21,.12);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 12px;
}
.activity-card strong {
  display: block;
  color: var(--green);
  font-size: 26px;
  font-weight: 950;
}
.activity-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 850;
}
.activity-card.muted strong { color: var(--blue); font-size: 20px; }
.flow-mock {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(21,21,21,.13);
  border-radius: 10px;
  background: #fffaf1;
  box-shadow: 0 18px 36px rgba(21,21,21,.12);
}
.flow-item, .flow-total {
  display: grid;
  grid-template-columns: 80px 1fr 70px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}
.flow-item span { color: var(--muted); }
.flow-item strong { color: var(--green); }
.flow-item em {
  justify-self: end;
  font-style: normal;
  color: var(--orange);
}
.flow-total {
  grid-template-columns: 1fr auto;
  background: var(--charcoal);
  color: #fff;
}
.flow-total span { color: rgba(255,255,255,.72); }
.flow-total strong { font-size: 26px; }
.split-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split-scene .phone-card:first-child { transform: translateX(-28px); }
.split-scene .phone-card:last-child { transform: translateX(28px); }
.report-bars { display: grid; gap: 10px; margin-top: 20px; }
.report-bars span {
  display: block;
  height: 28px;
  border-radius: 999px;
  background: var(--green);
}
.report-bars span:nth-child(2) { width: 78%; background: var(--blue); }
.report-bars span:nth-child(3) { width: 58%; background: var(--orange); }
.up-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.up-grid .paper-card { min-height: 130px; }
.role-stack { display: grid; gap: 12px; }
.role-card {
  padding: 22px;
  border-left: 8px solid var(--orange);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21,21,21,.08);
}
.role-card:nth-child(2) { border-left-color: var(--green); margin-left: 32px; }
.role-card:nth-child(3) { border-left-color: var(--blue); margin-left: 64px; }
.role-card strong { display: block; font-size: 24px; font-weight: 950; }
.final-cta {
  padding: 96px clamp(18px, 5vw, 70px);
  background: var(--charcoal);
  color: #fff;
}
.final-cta h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 1.04;
  font-weight: 950;
}
.final-cta p {
  margin: 22px 0 0;
  max-width: 720px;
  color: rgba(255,255,255,.74);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.55;
}
.final-cta .btn { border-color: rgba(255,255,255,.5); color: #fff; }
.final-cta .btn.primary { background: #fff; color: var(--charcoal); border-color: #fff; }
footer {
  padding: 30px clamp(18px, 5vw, 70px);
  background: #151515;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 6px 10px; margin-bottom: 0; font-weight: 800; }
.footer-links span { color: rgba(226, 232, 240, .72); }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.split-scene.reveal .phone-card:first-child,
.split-scene.reveal .phone-card:last-child {
  transition: transform .8s ease;
}
.split-scene.reveal.is-visible .phone-card:first-child,
.split-scene.reveal.is-visible .phone-card:last-child {
  transform: translateX(0);
}
#loginLayer, #accessDeniedLayer {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(21,21,21,.72);
  backdrop-filter: blur(12px);
}
.facility-home-layer,
.page-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 19000;
  display: none;
  padding: clamp(10px, 2vw, 24px);
}
.facility-home-layer.show,
.page-modal-layer.show { display: block; }
.facility-home-backdrop,
.page-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 14, .74);
  backdrop-filter: blur(10px);
}
.facility-home-modal,
.page-modal {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: min(820px, calc(100svh - 2 * clamp(10px, 2vw, 24px)));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  background: #101418;
  box-shadow: 0 34px 90px rgba(0,0,0,.45);
}
.page-modal {
  width: min(1040px, 100%);
}
.facility-home-bar,
.page-modal-bar {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px 0 18px;
  background: #151515;
  color: #fff;
}
.facility-home-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.facility-home-actions a,
.facility-home-actions button,
.page-modal-bar button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.facility-home-actions button,
.page-modal-bar button {
  background: #fff;
  color: #151515;
}
#facilityHomeFrame,
#pageModalFrame {
  width: 100%;
  height: calc(100% - 52px);
  border: 0;
  background: #fff;
}
body.facility-modal-open { overflow: hidden; }
#loginLayer.show, #accessDeniedLayer.show { display: flex; }
.modal-box {
  width: min(420px, 100%);
  padding: 28px;
  border-radius: 12px;
  background: #fffaf1;
  border: 1px solid rgba(21,21,21,.12);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}
.modal-box h2 { margin: 0 0 8px; font-size: 28px; font-weight: 950; }
.modal-box p { margin: 0 0 20px; color: var(--muted); font-weight: 750; line-height: 1.55; }
.input-group { display: grid; gap: 7px; margin-bottom: 12px; font-weight: 900; }
.input-group input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(21,21,21,.18);
  border-radius: 8px;
  background: #fff;
  outline: none;
}
.login-error {
  margin: 0 0 12px;
  color: #b42318;
  font-weight: 900;
  line-height: 1.45;
}
.modal-actions { display: grid; gap: 8px; margin-top: 14px; }
.text-link { color: var(--blue); font-weight: 900; }
.mobile-only { display: none; }
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-flex; }
  .landing-header { padding: 14px 16px; }
  .brand { gap: 8px; }
  .site-brand-logo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
  .site-brand-text { font-size: 28px; white-space: normal; }
  .nav { gap: 4px; }
  .nav a:not(.login-btn):not(.mobile-keep), .nav button:not(.login-btn) { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 104px 16px 52px;
  }
  .hero h1 { font-size: clamp(44px, 14vw, 72px); }
  .hero-sub { font-size: 22px; }
  .hero-actions .btn, .section-actions .btn { width: 100%; }
  .system-stack { width: 100%; margin: 10px 0 0; }
  .system-card:nth-child(2), .system-card:nth-child(3) { transform: none; }
  .mini-row { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .facility-section { padding: 54px 16px; }
  .facility-title-row { display: block; }
  .facility-filter-label { margin-top: 14px; margin-bottom: 0; }
  .facility-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .facility-card { min-height: 66px; padding: 9px; gap: 9px; }
  .facility-logo { width: 38px; height: 38px; flex-basis: 38px; }
  .story-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 68px 16px;
  }
  .scene { min-height: 0; }
  .split-scene, .up-grid, .service-pair { grid-template-columns: 1fr; }
  .ledger-mock { font-size: 12px; }
  .ledger-head { display: none; }
  .ledger-row {
    grid-template-columns: 44px 1fr 74px;
    gap: 8px;
  }
  .ledger-row span:nth-child(2),
  .ledger-row span:nth-child(6) { grid-column: 2 / -1; }
  .ledger-row strong { grid-column: 2; }
  .ledger-row em { grid-column: 3; grid-row: 1; }
  .ledger-row b { grid-column: 3; grid-row: 2; }
  .service-screen { min-height: 0; }
  .facility-home-layer, .page-modal-layer { padding: 0; }
  .facility-home-modal, .page-modal { width: 100%; height: 100svh; border-radius: 0; border: 0; }
  .facility-home-bar, .page-modal-bar { height: 56px; padding-left: 14px; }
  #facilityHomeFrame, #pageModalFrame { height: calc(100% - 56px); }
  .split-scene .phone-card:first-child,
  .split-scene .phone-card:last-child { transform: translateY(0); }
  .role-card, .role-card:nth-child(2), .role-card:nth-child(3) { margin-left: 0; }
  .final-cta { padding: 72px 16px; }
  footer { padding: 28px 16px; }
}
@media (max-width: 640px) {
  .landing-header {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 12px 12px;
  }
  .brand {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .site-brand-text {
    overflow-wrap: anywhere;
  }
  .nav {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .hero {
    padding-top: 168px;
  }
}
@media (max-width: 430px) {
  .site-brand-logo {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .site-brand-text {
    font-size: 24px;
  }
  .hero {
    padding-top: 156px;
  }
}
@media (max-width: 430px) {
  .facility-grid { grid-template-columns: 1fr; }
  .brand { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .landing-shell { transition: none; }
  body.landing-modal-open .landing-shell { transform: none; }
}
