:root {
  color-scheme: light;
  --canvas: #f7f1e6;
  --paper: #fffaf1;
  --navy: #243b5a;
  --coral: #e27862;
  --mint: #65a88b;
  --yellow: #edc75c;
  --ink: #29343d;
  --muted: #69747b;
  --line: #d7cdbd;
  --shadow: 0 14px 32px rgb(36 59 90 / 10%);
}

* {
  box-sizing: border-box;
}
html {
  background: var(--canvas);
  color: var(--ink);
  font-family: "Yu Gothic UI", "Hiragino Sans", sans-serif;
  line-height: 1.65;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 300px;
}
a {
  color: inherit;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.skip-link {
  background: var(--navy);
  color: white;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 20;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1180px;
  padding: 1rem 1.5rem;
}
.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
  text-decoration: none;
}
.brand > span {
  border: 2px solid var(--navy);
  border-radius: 0.25rem;
  display: grid;
  height: 2.25rem;
  padding: 0.3rem;
  place-items: center;
  position: relative;
  width: 2.25rem;
}
.brand > span::before {
  border: 2px solid var(--coral);
  border-bottom: 0;
  content: "";
  height: 0.75rem;
  position: absolute;
  top: -0.4rem;
  transform: rotate(45deg);
  width: 0.75rem;
}
.brand i:first-child {
  background: var(--mint);
  border-radius: 50%;
  height: 0.55rem;
  width: 0.55rem;
}
.brand i:last-child {
  border: 2px solid var(--coral);
  border-radius: 50% 50% 0.35rem 0.35rem;
  height: 0.65rem;
  width: 1rem;
}
.brand b {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}
.site-header nav {
  display: flex;
  gap: 1.35rem;
}
.site-header nav a {
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}
.site-header nav a:hover {
  color: var(--coral);
}
main {
  margin: auto;
  max-width: 1180px;
  padding: 0 1.5rem 5rem;
}
h1 {
  font-size: clamp(1.75rem, 3.2vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin: 0.35rem 0 1rem;
}
h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.4;
  margin: 0.25rem 0 0.8rem;
}
h3 {
  line-height: 1.4;
}
.eyebrow,
.section-kicker {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0;
}
.hero {
  align-items: center;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 0.85fr 1.35fr;
  min-height: 590px;
  padding: 2.5rem 0 4rem;
}
.hero-copy {
  max-width: 31rem;
}
.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.primary-button,
.quiet-button,
.favorite-button,
.compare-button {
  align-items: center;
  border-radius: 0.4rem;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  text-decoration: none;
}
.primary-button {
  background: var(--navy);
  border: 2px solid var(--navy);
  color: white;
}
.primary-button:hover {
  background: var(--coral);
  border-color: var(--coral);
}
.quiet-button,
.favorite-button,
.compare-button {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.quiet-button:hover,
.favorite-button:hover,
.compare-button:hover {
  background: white;
}
.privacy-strip {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  gap: 0.45rem;
  margin-top: 1.5rem;
}
.privacy-strip i {
  background: var(--mint);
  border-radius: 50%;
  height: 0.45rem;
  width: 0.45rem;
}

.floor-plan {
  aspect-ratio: 1.48;
  background: var(--paper);
  border: 0.85rem solid var(--navy);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 1.05fr 0.9fr 0.8fr;
  grid-template-rows: 1fr 0.62fr;
  overflow: hidden;
  padding: 0.8rem;
  position: relative;
}
.floor-plan::before {
  border: 1px dashed var(--line);
  content: "";
  inset: 0.35rem;
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
}
.room {
  align-items: center;
  border: 3px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 8rem;
  padding: 0.8rem;
  position: relative;
  z-index: 1;
}
.room b {
  font-size: 0.82rem;
  margin-top: 0.55rem;
}
.room em {
  color: var(--muted);
  font-size: 0.66rem;
  font-style: normal;
}
.nursing-room {
  background: #f9ddd3;
  border-color: var(--coral);
}
.diaper-room {
  background: #fff0bd;
  border-color: var(--yellow);
}
.wash-room {
  background: #dceee5;
  border-color: var(--mint);
}
.chair {
  border: 5px solid var(--navy);
  border-radius: 50% 50% 0.6rem 0.6rem;
  height: 3.3rem;
  position: relative;
  width: 3.4rem;
}
.chair::after {
  border: 5px solid var(--navy);
  border-top: 0;
  bottom: -0.9rem;
  content: "";
  height: 1rem;
  left: 0.45rem;
  position: absolute;
  width: 1.9rem;
}
.table {
  background: white;
  border: 4px solid var(--navy);
  border-radius: 0.45rem;
  height: 2.8rem;
  position: relative;
  width: 4rem;
}
.table::after {
  border-bottom: 4px solid var(--yellow);
  border-top: 4px solid var(--yellow);
  content: "";
  height: 0.45rem;
  left: 0.55rem;
  position: absolute;
  top: 0.7rem;
  width: 2.35rem;
}
.sink {
  border: 5px solid var(--navy);
  border-radius: 0.2rem 0.2rem 1rem 1rem;
  height: 2.7rem;
  position: relative;
  width: 3.8rem;
}
.sink::before {
  border: 5px solid var(--mint);
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  content: "";
  height: 1.3rem;
  left: 1.15rem;
  position: absolute;
  top: -1.3rem;
  width: 1rem;
}
.stroller-route {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  grid-column: 1 / 3;
  grid-row: 2;
  padding-left: 1.1rem;
  position: relative;
  z-index: 1;
}
.stroller-route::before {
  background: var(--coral);
  border-radius: 50%;
  content: "";
  height: 2.6rem;
  width: 2.6rem;
}
.stroller-route::after {
  border-top: 0.38rem dotted var(--coral);
  content: "";
  flex: 1;
}
.stroller-route i {
  display: none;
}
.shared-door {
  align-items: center;
  background: #e5ebf1;
  border: 3px solid var(--navy);
  display: flex;
  flex-direction: column;
  grid-column: 3;
  grid-row: 2;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.shared-door i {
  border: 0.35rem solid var(--navy);
  border-bottom: 0;
  height: 2.2rem;
  width: 2.6rem;
}
.shared-door b {
  font-size: 0.7rem;
}
.verified-card {
  background: white;
  border: 2px solid var(--mint);
  bottom: 1.1rem;
  box-shadow: 0 5px 15px rgb(36 59 90 / 12%);
  display: grid;
  font-size: 0.62rem;
  padding: 0.35rem 0.45rem;
  position: absolute;
  right: 1rem;
  text-align: center;
  transform: rotate(-2deg);
  z-index: 3;
}
.verified-card i {
  background: var(--mint);
  border-radius: 50%;
  color: white;
  font-style: normal;
  justify-self: center;
  line-height: 1.2rem;
  margin-top: 0.2rem;
  width: 1.2rem;
}

.feature-lane {
  align-items: end;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.7fr 1.3fr;
  padding: 2.2rem 0;
}
.feature-tiles {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, 1fr);
}
.feature-tiles article {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  gap: 0.65rem;
  min-height: 4rem;
  padding: 0.65rem;
}
.feature-tiles b {
  font-size: 0.75rem;
}
.feature-icon {
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 0.35rem;
  color: var(--navy);
  display: inline-flex;
  flex: 0 0 auto;
  height: 2rem;
  justify-content: center;
  position: relative;
  width: 2rem;
}
.feature-icon i,
.feature-icon::before,
.feature-icon::after {
  content: "";
  display: block;
  position: absolute;
}
.feature-icon.nursing i {
  border: 3px solid var(--coral);
  border-radius: 50%;
  height: 0.65rem;
  top: 0.28rem;
  width: 0.65rem;
}
.feature-icon.nursing::after {
  border: 3px solid var(--coral);
  border-radius: 50% 50% 0.25rem 0.25rem;
  bottom: 0.25rem;
  height: 0.55rem;
  width: 1rem;
}
.feature-icon.diaper i {
  border: 3px solid var(--yellow);
  border-radius: 0.2rem;
  height: 0.8rem;
  width: 1.25rem;
}
.feature-icon.hotWater i {
  border: 3px solid var(--coral);
  border-radius: 0.2rem 0.2rem 0.6rem 0.6rem;
  height: 0.9rem;
  width: 0.7rem;
}
.feature-icon.hotWater::before {
  border-left: 2px solid var(--coral);
  border-right: 2px solid var(--coral);
  height: 0.45rem;
  top: 0.15rem;
  width: 0.35rem;
}
.feature-icon.sink i {
  border: 3px solid var(--mint);
  border-radius: 0 0 0.7rem 0.7rem;
  height: 0.65rem;
  width: 1.2rem;
}
.feature-icon.sink::before {
  border-left: 3px solid var(--mint);
  border-top: 3px solid var(--mint);
  border-radius: 0.4rem 0 0;
  height: 0.6rem;
  top: 0.28rem;
  width: 0.5rem;
}
.feature-icon.allGenders i {
  background: var(--navy);
  border-radius: 50%;
  height: 0.45rem;
  left: 0.35rem;
  top: 0.35rem;
  width: 0.45rem;
}
.feature-icon.allGenders::before {
  background: var(--mint);
  border-radius: 50%;
  height: 0.45rem;
  right: 0.35rem;
  top: 0.35rem;
  width: 0.45rem;
}
.feature-icon.allGenders::after {
  border-bottom: 0.55rem solid var(--coral);
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  bottom: 0.25rem;
  height: 0;
  width: 0;
}
.feature-icon.stroller i {
  border: 3px solid var(--navy);
  border-radius: 0 0 1rem 1rem;
  height: 0.65rem;
  width: 1.25rem;
}
.feature-icon.stroller::before,
.feature-icon.stroller::after {
  background: var(--coral);
  border-radius: 50%;
  bottom: 0.18rem;
  height: 0.35rem;
  width: 0.35rem;
}
.feature-icon.stroller::before {
  left: 0.35rem;
}
.feature-icon.stroller::after {
  right: 0.35rem;
}
.nearby-section {
  padding: 4rem 0 1rem;
}
.nearby-section > header,
.directory-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}
.nearby-section > header > a {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
}
.room-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.room-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgb(36 59 90 / 6%);
  min-width: 0;
  padding: 1rem;
  position: relative;
}
.room-card:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
}
.mini-plan {
  background: #edf3ef;
  border: 3px solid var(--navy);
  height: 6rem;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}
.mini-room {
  background: #f8dcd3;
  border-right: 3px solid var(--navy);
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 42%;
}
.mini-table {
  background: #ffefbd;
  border: 3px solid var(--yellow);
  height: 1.7rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.5rem;
}
.mini-plan i {
  border-bottom: 0.3rem dotted var(--coral);
  bottom: 1.4rem;
  left: 1rem;
  position: absolute;
  right: 0.7rem;
}
.card-heading {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.7rem;
  justify-content: space-between;
}
.card-heading > span {
  color: var(--coral);
  font-weight: 800;
}
.room-card h3 {
  font-size: 1rem;
  margin: 0.6rem 0 0.3rem;
}
.room-card h3 a {
  text-decoration: none;
}
.room-card > p {
  color: var(--muted);
  font-size: 0.76rem;
  margin: 0.2rem 0;
}
.room-card .floor {
  color: var(--ink);
  font-weight: 700;
}
.compact-features {
  display: flex;
  gap: 0.35rem;
  margin: 0.8rem 0;
}
.compact-features .feature-icon {
  height: 1.6rem;
  transform: scale(0.82);
  transform-origin: left center;
  width: 1.6rem;
}
.card-link {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: space-between;
  padding-top: 0.7rem;
  text-decoration: none;
}

.page-intro {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 8rem 1fr;
  padding: 3rem 0 2rem;
}
.page-symbol {
  background: var(--paper);
  border: 0.55rem solid var(--navy);
  height: 6.5rem;
  position: relative;
  width: 7.2rem;
}
.page-symbol i {
  background: var(--coral);
  height: 0.45rem;
  left: 0.75rem;
  position: absolute;
  right: 0.75rem;
}
.page-symbol i:nth-child(1) {
  top: 1.2rem;
}
.page-symbol i:nth-child(2) {
  background: var(--mint);
  top: 2.7rem;
}
.page-symbol i:nth-child(3) {
  background: var(--yellow);
  top: 4.2rem;
}
.page-intro p {
  color: var(--muted);
  margin: 0;
}
.filter-bar {
  align-items: end;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  margin: 1.5rem 0 2.5rem;
  padding: 1rem;
}
.filter-bar label {
  display: grid;
  gap: 0.3rem;
}
.filter-bar label > span {
  font-size: 0.7rem;
  font-weight: 800;
}
.filter-bar input,
.filter-bar select {
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.65rem;
  width: 100%;
}
.empty-floor {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 15rem;
  padding: 4rem;
  text-align: center;
}

.detail-hero {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 15rem 1fr;
  padding: 3rem 0 2rem;
}
.detail-plan {
  align-content: center;
  background: var(--paper);
  border: 0.65rem solid var(--navy);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  min-height: 12rem;
  padding: 1rem;
  position: relative;
}
.detail-plan .feature-icon {
  background: white;
  height: 2.8rem;
  width: 2.8rem;
}
.plan-route {
  border-bottom: 0.35rem dotted var(--coral);
  bottom: 0.8rem;
  left: 0.8rem;
  position: absolute;
  right: 0.8rem;
}
.detail-hero p {
  color: var(--muted);
  margin: 0.2rem 0;
}
.detail-hero .floor {
  color: var(--ink);
  font-weight: 800;
}
.detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.45fr 0.75fr;
}
.room-facts,
.source-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.3rem;
}
.feature-list {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.feature-list li {
  align-items: center;
  border: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
  grid-template-columns: auto 1fr auto;
  min-height: 3.4rem;
  padding: 0.5rem;
}
.feature-list li > span {
  font-size: 0.76rem;
  font-weight: 700;
}
.feature-list li > b {
  font-size: 0.67rem;
}
.feature-list .unknown {
  color: #8f928f;
  opacity: 0.68;
}
.room-facts dl {
  margin: 0;
}
.room-facts dl div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 7rem 1fr;
  padding: 0.8rem 0;
}
.room-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}
.room-facts dd {
  font-size: 0.82rem;
  margin: 0;
}
.source-panel {
  align-self: start;
}
.source-panel > p {
  color: var(--muted);
  font-size: 0.78rem;
}
.source-panel .primary-button,
.source-panel button {
  margin-top: 0.65rem;
  width: 100%;
}
.source-door {
  align-items: center;
  background: #e5ebf1;
  border: 4px solid var(--navy);
  display: flex;
  height: 6rem;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}
.source-door i {
  border: 0.4rem solid var(--navy);
  border-bottom: 0;
  height: 3rem;
  width: 3.3rem;
}
.source-door span {
  background: var(--navy);
  color: white;
  font-size: 0.58rem;
  left: 50%;
  padding: 0.2rem 0.4rem;
  position: absolute;
  top: 0.6rem;
  transform: translateX(-50%);
}
.source-panel [data-action-state] {
  color: var(--coral);
  min-height: 1.4rem;
}

.compare-page,
.prose-page {
  max-width: 1000px;
}
.compare-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}
.compare-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem;
}
.compare-grid h2 {
  font-size: 1rem;
}
.compare-grid p {
  color: var(--muted);
  font-size: 0.75rem;
}
.compare-grid dl div {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.72rem;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.compare-grid dd {
  font-weight: 800;
  margin: 0;
}
.compare-grid a {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}
[data-compare-empty] {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  margin-top: 2rem;
  padding: 3rem;
  text-align: center;
}
.guide-grid,
.privacy-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}
.guide-grid section,
.privacy-grid section {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 13rem;
  padding: 1.2rem;
}
.guide-grid section > b {
  align-items: center;
  background: var(--coral);
  border-radius: 50%;
  color: white;
  display: flex;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}
.guide-grid p,
.privacy-grid p {
  color: var(--muted);
  font-size: 0.82rem;
}
.not-found {
  padding-top: 5rem;
  text-align: center;
}
.empty-room {
  background: var(--paper);
  border: 0.6rem solid var(--navy);
  height: 9rem;
  margin: 0 auto 1.5rem;
  position: relative;
  width: 11rem;
}
.empty-room i {
  border: 0.45rem solid var(--coral);
  border-bottom: 0;
  bottom: 0;
  height: 5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 4rem;
}
.empty-room span {
  color: var(--muted);
  font-size: 0.65rem;
  position: absolute;
  right: 0.4rem;
  top: 0.3rem;
}
footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.72rem;
  gap: 1.2rem;
  justify-content: center;
  padding: 1.5rem;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 2rem;
  }
  .hero-copy {
    max-width: 38rem;
  }
  .feature-lane,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-field {
    grid-column: 1 / -1;
  }
  .compare-grid,
  .guide-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    padding: 0.8rem 1rem;
  }
  .site-header nav {
    gap: 0.65rem;
  }
  .site-header nav a {
    font-size: 0.69rem;
  }
  .brand b {
    display: none;
  }
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .floor-plan {
    border-width: 0.55rem;
    gap: 0.35rem;
    padding: 0.5rem;
  }
  .room {
    min-height: 6rem;
    padding: 0.35rem;
  }
  .room b,
  .shared-door b {
    font-size: 0.6rem;
  }
  .room em,
  .verified-card {
    display: none;
  }
  .chair {
    height: 2.4rem;
    width: 2.5rem;
  }
  .table {
    height: 2rem;
    width: 3rem;
  }
  .sink {
    height: 2rem;
    width: 2.8rem;
  }
  .feature-lane {
    gap: 1rem;
  }
  .feature-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-grid {
    grid-template-columns: 1fr;
  }
  .page-intro {
    grid-template-columns: 5.5rem 1fr;
    padding-top: 2rem;
  }
  .page-symbol {
    border-width: 0.4rem;
    height: 5rem;
    width: 5rem;
  }
  .page-symbol i:nth-child(3) {
    top: 3.4rem;
  }
  .filter-bar {
    grid-template-columns: 1fr;
  }
  .search-field {
    grid-column: auto;
  }
  .detail-hero {
    align-items: start;
    grid-template-columns: 7rem 1fr;
    gap: 1rem;
  }
  .detail-plan {
    border-width: 0.45rem;
    min-height: 8rem;
    padding: 0.45rem;
  }
  .detail-plan .feature-icon {
    height: 1.8rem;
    width: 1.8rem;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .room-facts dl div {
    grid-template-columns: 5rem 1fr;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media print {
  .site-header,
  footer,
  .hero-actions,
  .filter-bar,
  .source-panel button,
  .source-panel .primary-button,
  script {
    display: none !important;
  }
  body,
  html {
    background: white;
  }
  main {
    max-width: none;
    padding: 0;
  }
  .room-card,
  .room-facts,
  .source-panel {
    box-shadow: none;
    break-inside: avoid;
  }
}
