:root {
    --color-ink: #141150;
    --color-accent: #ff3131;
    --color-surface: #ffffff;
    --color-text-muted: rgba(20, 17, 80, 0.68);
    --page-max-width: 1440px;
    --page-gutter: 36px;
    --shadow-header: 0 4px 12px rgba(148, 148, 148, 0.36);
    --shadow-menu: 0 12px 16px -14px rgba(148, 148, 148, 0.52);
}

  * {
    box-sizing: border-box;
  }
  
  html {
    overflow-x: clip;
  }

  html,
  body {
    margin: 0;
    min-height: 100%;
  }

  body {
    background: #f7f7fb;
    font-family: "Inter", Arial, sans-serif;
    overflow-x: clip;
    padding: 0;
  }

  body.room-view {
    background: linear-gradient(180deg, #ffffff 0%, #f5f6fa 100%);
    overflow-x: clip;
  }

  body.homes-view {
    background: linear-gradient(180deg, #ffffff 0%, #f5f6fa 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
    overflow-x: clip;
  }

  body.homes-view main {
    flex: 1 0 auto;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  body.homes-view .site-footer {
    margin-top: 0;
    min-width: 0;
  }

  .all-homes-page {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    overflow-x: visible;
    padding: 64px var(--page-gutter);
    width: 100%;
  }

  .all-homes-page__intro {
    margin-bottom: 20px;
  }

  .all-homes-page__intro h1 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
  }

  .all-homes-page__toolbar {
    align-items: start;
    display: grid;
    gap: 12px 20px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 22px;
    max-width: 100%;
    min-width: 0;
    position: relative;
    width: 100%;
    z-index: 10;
  }

  .all-homes-page__filters {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding: 2px 0 8px;
  }


  .filter-pill {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 12px;
    color: var(--color-ink);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    height: 48px;
    max-width: 100%;
    min-width: 0;
    padding: 0 14px 0 12px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    white-space: nowrap;
  }

  .filter-pill:hover,
  .filter-pill:focus-visible {
    border-color: rgba(20, 17, 80, 0.18);
    box-shadow: 0 6px 18px rgba(148, 148, 148, 0.14);
    transform: translateY(-1px);
  }

  .filter-pill--sort {
    flex: 0 0 auto;
    justify-content: flex-start;
    max-width: min(100%, 280px);
    min-width: 0;
    padding-right: 12px;
    width: fit-content;
  }

  .filter-pill__label {
    flex: 1 1 auto;
    max-width: 11rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .filter-pill--sort .filter-pill__label {
    flex: 0 1 auto;
    max-width: 70vw;
  }

  .filter-pill--active {
    border-color: rgba(20, 17, 80, 0.22);
    box-shadow: 0 4px 14px rgba(20, 17, 80, 0.08);
  }

  .filter-group--sort .filter-dropdown {
    left: auto;
    min-width: 200px;
    right: 0;
  }

  .filter-group {
    position: relative;
    flex: 0 0 auto;
  }

  .filter-group.is-open {
    z-index: 40;
  }

  .filter-pill__icon {
    align-items: center;
    display: inline-flex;
    height: 16px;
    width: 16px;
  }

  .filter-pill__icon svg {
    fill: none;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 16px;
  }

  .filter-pill__chevron {
    fill: none;
    height: 14px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 14px;
  }

  .all-homes-page__sort {
    align-items: center;
    color: var(--color-ink);
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
    max-width: 100%;
    min-width: 0;
    padding-bottom: 2px;
  }

  .all-homes-page__sort-label {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
  }

  .filter-dropdown {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(20, 17, 80, 0.12);
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr);
    left: 0;
    min-width: 240px;
    padding: 14px;
    position: absolute;
    top: calc(100% + 10px);
    z-index: 41;
  }

  .filter-dropdown[hidden] {
    display: none !important;
  }

  .filter-dropdown--wide {
    min-width: 280px;
  }

  .filter-dropdown button {
    align-items: center;
    background: #f7f7fb;
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 10px;
    color: var(--color-ink);
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 12px;
    text-align: left;
  }

  .contact-launcher {
    bottom: 20px;
    position: fixed;
    right: 20px;
    z-index: 60;
  }

  .contact-launcher__toggle {
    align-items: center;
    background: linear-gradient(180deg, #ff6b6b 0%, #ff3131 55%, #d81f1f 100%);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(255, 49, 49, 0.3);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 56px;
    justify-content: center;
    position: relative;
    width: 56px;
  }

  .contact-launcher__toggle::before {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
  }

  .contact-launcher__toggle-icon {
    align-items: center;
    display: inline-flex;
    inset: 0;
    justify-content: center;
    position: absolute;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .contact-launcher__toggle-icon svg {
    fill: none;
    height: 24px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 24px;
  }

  .contact-launcher__toggle-icon--close {
    opacity: 0;
    transform: scale(0.65);
  }

  .contact-launcher.is-open .contact-launcher__toggle-icon--open {
    opacity: 0;
    transform: scale(0.65);
  }

  .contact-launcher.is-open .contact-launcher__toggle-icon--close {
    opacity: 1;
    transform: scale(1);
  }

  .contact-launcher__panel {
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 24px;
    bottom: calc(100% + 14px);
    box-shadow: 0 26px 54px rgba(20, 17, 80, 0.16);
    max-height: min(60vh, 360px);
    overflow: hidden;
    padding: 12px;
    position: absolute;
    right: 0;
    width: min(86vw, 250px);
  }

  .contact-launcher__panel[hidden] {
    display: none !important;
  }

  .contact-launcher__menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-launcher__item {
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(20, 17, 80, 0.06);
    color: inherit;
    display: flex;
    gap: 12px;
    min-height: 58px;
    padding: 10px 12px;
    text-align: left;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .contact-launcher__item:hover,
  .contact-launcher__item:focus-visible {
    border-color: rgba(20, 17, 80, 0.15);
    box-shadow: 0 12px 22px rgba(20, 17, 80, 0.1);
    transform: translateY(-1px);
    outline: 0;
  }

  .contact-launcher__item-icon {
    align-items: center;
    border-radius: 14px;
    display: inline-flex;
    flex: 0 0 auto;
    height: 36px;
    justify-content: center;
    width: 36px;
  }

  .contact-launcher__item-icon svg {
    fill: currentColor;
    height: 18px;
    width: 18px;
  }

  .contact-launcher__item-copy {
    display: grid;
    min-width: 0;
  }

  .contact-launcher__item-copy strong,
  .contact-launcher__item-copy span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .contact-launcher__item-copy strong {
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
  }

  .contact-launcher__item-copy span {
    color: rgba(20, 17, 80, 0.66);
    font-size: 11px;
    line-height: 1.2;
    margin-top: 2px;
  }

  .contact-launcher__item--whatsapp .contact-launcher__item-icon {
    background: rgba(37, 211, 102, 0.14);
    color: #1f9d56;
  }

  .contact-launcher__item--messenger .contact-launcher__item-icon {
    background: rgba(0, 100, 255, 0.12);
    color: #1c63ff;
  }

  .contact-launcher__item--email .contact-launcher__item-icon {
    background: rgba(112, 92, 255, 0.12);
    color: #6a57ff;
  }

  .contact-launcher__toggle-icon svg {
    fill: none;
    height: 24px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 24px;
  }

  .contact-launcher__toggle-icon--open {
    opacity: 1;
    transform: scale(1);
  }

  .contact-launcher__toggle-icon--close {
    opacity: 0;
    transform: scale(0.65);
  }

  .contact-launcher.is-open .contact-launcher__toggle-icon--open {
    opacity: 0;
    transform: scale(0.65);
  }

  .contact-launcher.is-open .contact-launcher__toggle-icon--close {
    opacity: 1;
    transform: scale(1);
  }

  .contact-launcher.is-open .contact-launcher__toggle {
    box-shadow: 0 14px 28px rgba(255, 49, 49, 0.24);
  }

  @media (max-width: 767px) {
    .contact-launcher {
      bottom: 12px;
      right: 12px;
    }

    .contact-launcher__toggle {
      height: 52px;
      width: 52px;
    }

    .contact-launcher__panel {
      max-height: min(64vh, 330px);
      width: min(90vw, 240px);
    }
  }

  .filter-dropdown button:hover,
  .filter-dropdown button:focus-visible {
    background: rgba(20, 17, 80, 0.04);
    border-color: rgba(20, 17, 80, 0.14);
  }

  .filter-dropdown a {
    align-items: center;
    background: #f7f7fb;
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 10px;
    box-sizing: border-box;
    color: var(--color-ink);
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    justify-content: flex-start;
    max-width: 100%;
    min-height: 40px;
    min-width: 0;
    padding: 0 12px;
    text-align: left;
    text-decoration: none;
    width: 100%;
  }

  .filter-dropdown a:hover,
  .filter-dropdown a:focus-visible {
    background: rgba(20, 17, 80, 0.04);
    border-color: rgba(20, 17, 80, 0.14);
  }

  .filter-dropdown .filter-dropdown__hint {
    color: rgba(20, 17, 80, 0.62);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
    padding: 6px 4px;
  }

  .filter-group.is-open .filter-pill {
    border-color: rgba(20, 17, 80, 0.24);
    box-shadow: 0 8px 18px rgba(148, 148, 148, 0.14);
  }

  .filter-group.is-open .filter-pill__chevron {
    transform: rotate(180deg);
  }

  .all-homes-page__results {
    display: grid;
    gap: 18px;
  }

  .all-homes-page__count {
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
  }

  .all-homes-list {
    align-items: stretch;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .all-homes-list .all-home-card {
    height: 100%;
  }

  .home-card,
  .all-home-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(148, 148, 148, 0.18);
    color: var(--color-ink);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home-card__media-link,
  .all-home-card__media-link {
    color: inherit;
    display: block;
    flex-shrink: 0;
    line-height: 0;
    position: relative;
    text-decoration: none;
  }

  .home-card__media-link:focus-visible,
  .all-home-card__media-link:focus-visible {
    outline: 2px solid rgba(20, 17, 80, 0.35);
    outline-offset: 2px;
  }

  .home-card img,
  .all-home-card img {
    aspect-ratio: 16 / 10;
    display: block;
    flex-shrink: 0;
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  .home-card__badge,
  .all-home-card__badge {
    align-items: center;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(20, 17, 80, 0.16);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    gap: 4px;
    left: 12px;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 7px 10px;
    pointer-events: none;
    position: absolute;
    text-transform: uppercase;
    top: 12px;
    z-index: 2;
  }

  .home-card__badge--new,
  .all-home-card__badge--new {
    background: linear-gradient(135deg, #141150 0%, #2e2a82 100%);
    color: #fff;
  }

  .home-card__body,
  .all-home-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    min-height: 0;
    padding: 20px 22px 22px;
  }

  .home-listing__location {
    align-items: center;
    color: rgba(20, 17, 80, 0.55);
    display: inline-flex;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
  }

  .home-listing__location-icon {
    align-items: center;
    color: rgba(20, 17, 80, 0.42);
    display: inline-flex;
    flex-shrink: 0;
    line-height: 0;
  }

  .home-listing__location-icon svg {
    display: block;
    fill: currentColor;
    height: 18px;
    width: 18px;
  }

  .home-listing__location-label {
    min-width: 0;
  }

  .home-card h3,
  .all-home-card h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
  }

  .home-card__title-link,
  .all-home-card__title-link {
    color: inherit;
    overflow-wrap: anywhere;
    text-decoration: none;
  }

  .home-card__title-link:hover,
  .home-card__title-link:focus-visible,
  .all-home-card__title-link:hover,
  .all-home-card__title-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .home-card__meta,
  .all-home-card__meta {
    color: rgba(20, 17, 80, 0.72);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
  }

  .home-card__link,
  .all-home-card__link {
    align-items: center;
    color: var(--color-ink);
    display: inline-flex;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    text-decoration: none;
    width: fit-content;
  }

  .home-card__link:hover,
  .home-card__link:focus-visible,
  .all-home-card__link:hover,
  .all-home-card__link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .home-card__link img,
  .all-home-card__link img {
    height: 10px;
    width: 14px;
  }

  .home-card__summary-line,
  .all-home-card__summary-line {
    color: rgba(20, 17, 80, 0.72);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    margin: 6px 0 0;
    overflow-wrap: anywhere;
  }

  .room-page__summary-line {
    color: rgba(20, 17, 80, 0.76);
    font-size: clamp(14px, 1.35vw, 16px);
    font-weight: 500;
    line-height: 1.5;
    margin: 10px 0 0;
    max-width: 56ch;
  }

  .room-page__copy .room-page__features {
    margin-top: 18px;
    max-width: 520px;
  }

  .room-page__hero-feats-more {
    color: var(--color-ink);
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    text-decoration: none;
    text-underline-offset: 3px;
  }

  .room-page__hero-feats-more:hover,
  .room-page__hero-feats-more:focus-visible {
    text-decoration: underline;
  }

  .all-homes-page__pagination {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
  }

  .pagination-pill,
  .pagination-pill--arrow {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 8px;
    color: var(--color-ink);
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    height: 34px;
    justify-content: center;
    min-width: 34px;
    padding: 0 10px;
  }

  .pagination-pill.is-active {
    background: var(--color-ink);
    color: #ffffff;
  }

  .pagination-pill--arrow {
    width: 34px;
  }

  .pagination-pill--arrow span {
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
  }

  .pagination-ellipsis {
    color: rgba(20, 17, 80, 0.6);
    font-size: 16px;
    line-height: 1;
  }

  .all-homes-page__cta {
    align-items: center;
    background: linear-gradient(135deg, #0f154e 0%, #12227a 100%);
    border-radius: 16px;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    justify-content: flex-start;
    margin-inline: auto;
    margin-top: 64px;
    max-width: min(100%, 640px);
    padding: 20px 22px;
    width: 100%;
  }

  .all-homes-page__cta > div:first-of-type {
    flex: 0 1 auto;
    min-width: 0;
  }

  .all-homes-page__cta h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 6px;
  }

  .all-homes-page__cta p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.88;
  }

  .all-homes-page__cta-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    height: 44px;
    justify-content: center;
    margin-left: auto;
    min-width: 142px;
    padding: 0 16px;
    text-decoration: none;
  }

  .all-homes-page__cta-button img {
    filter: brightness(0) invert(1);
    height: 10px;
    width: 14px;
  }

  @media (max-width: 980px) {
    .all-homes-page {
      padding: 64px 24px;
    }

    .all-homes-page__toolbar {
      align-items: stretch;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .all-homes-page__sort {
      align-items: flex-start;
      align-self: stretch;
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 8px;
      grid-column: auto;
      justify-content: flex-start;
      justify-self: stretch;
      margin-left: 0;
      max-width: 100%;
      min-width: 0;
      width: 100%;
    }

    .all-homes-page__sort-label {
      width: auto;
    }

    .all-homes-page__sort .filter-group--sort {
      align-self: flex-start;
      max-width: 100%;
      width: fit-content;
    }

    .all-homes-page__sort .filter-pill--sort {
      box-sizing: border-box;
      justify-content: space-between;
      max-width: min(280px, 100%);
      width: auto;
    }

    .filter-dropdown {
      min-width: 220px;
    }

    .filter-group--sort .filter-dropdown {
      box-sizing: border-box;
      gap: 6px;
      grid-template-columns: minmax(0, 1fr);
      left: 0 !important;
      max-width: min(100vw - 32px, 320px) !important;
      min-width: 100% !important;
      padding: 10px;
      right: auto !important;
      width: max-content !important;
    }

    .homes-grid .home-card,
  .homes-grid .all-home-card {
      flex-basis: calc((100% - 18px) / 2);
    }

    .home-card__body,
    .all-home-card__body {
      padding: 18px 18px 20px;
    }

    .home-card h3,
    .all-home-card h3 {
      font-size: 18px;
    }

    .home-listing__location,
    .home-card__meta,
    .all-home-card__meta,
    .home-card__summary-line,
    .all-home-card__summary-line {
      font-size: 13px;
    }

    .all-homes-page__cta {
      align-items: flex-start;
      flex-direction: column;
    }

    .all-homes-page__cta-button {
      margin-left: 0;
    }

    .all-homes-list {
      gap: 20px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .all-homes-page {
      padding: 64px max(14px, env(safe-area-inset-right)) 64px max(14px, env(safe-area-inset-left));
    }

    .all-homes-page__intro h1 {
      font-size: 28px;
    }

    .filter-pill {
      flex: 0 0 auto;
      height: 44px;
      min-width: 0;
      padding: 0 12px;
      width: auto;
    }

    .all-homes-page__filters .filter-dropdown {
      left: 0;
      max-width: min(100vw - 32px, 320px);
      min-width: 0;
      position: absolute;
      width: 100%;
    }

    .all-homes-page__sort .filter-dropdown {
      gap: 6px;
      grid-template-columns: minmax(0, 1fr);
      left: 0 !important;
      max-width: min(100vw - 32px, 320px) !important;
      min-width: 100% !important;
      padding: 10px;
      right: auto !important;
      width: max-content !important;
    }

    .filter-group {
      width: auto;
    }

    .all-homes-page__filters {
      max-width: 100%;
      overflow: visible;
      width: 100%;
    }

    .all-homes-page__sort {
      align-items: flex-start;
      align-self: stretch;
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 8px;
      max-width: 100%;
      width: 100%;
    }

    .all-homes-page__sort-label {
      flex: 0 0 auto;
      font-size: 13px;
      width: auto;
    }

    .all-homes-page__sort .filter-group--sort {
      align-self: flex-start;
      max-width: 100%;
      width: fit-content;
    }

    .all-homes-page__sort .filter-pill--sort {
      box-sizing: border-box;
      justify-content: space-between;
      max-width: min(280px, 100%);
      width: auto;
    }

    .homes-grid .home-card,
  .homes-grid .all-home-card {
      flex-basis: 100%;
    }

    .all-homes-list {
      gap: 24px;
      grid-template-columns: 1fr;
    }

    .home-card__body,
    .all-home-card__body {
      padding: 16px 16px 18px;
    }

    .home-card h3,
    .all-home-card h3 {
      font-size: 17px;
    }

    .home-listing__location,
    .home-card__meta,
    .all-home-card__meta,
    .home-card__summary-line,
    .all-home-card__summary-line {
      font-size: 13px;
    }

    .home-card__link,
    .all-home-card__link {
      font-size: 13px;
    }

    .all-homes-page__pagination {
      gap: 6px;
      flex-direction: column;
    }

    .all-homes-page__cta {
      padding: 18px 16px;
    }

    .all-homes-page__cta h2 {
      font-size: 17px;
    }

    .all-homes-page__cta-button {
      margin-left: 0;
      min-width: 100%;
      width: 100%;
    }
  }

  main {
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    width: 100%;
  }

  .site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow-header);
    display: flex;
    height: 120px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    padding: 0 var(--page-gutter);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 30;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .brand {
    align-items: center;
    display: inline-flex;
    height: 47px;
    text-decoration: none;
    width: 173px;
  }

  .brand__logo {
    display: block;
    height: 47px;
    max-width: 173px;
    object-fit: contain;
    width: auto;
  }

  .brand__mark {
    flex: 0 0 auto;
    height: 47px;
    width: 50px;
  }

  .brand__wordmark {
    flex: 0 0 auto;
    height: 26px;
    margin-left: 2px;
    margin-top: 6px;
    width: 121px;
  }

  .primary-nav {
    align-items: center;
    display: flex;
    gap: 38px;
    list-style: none;
    margin-left: auto;
    margin-right: var(--page-gutter);
  }

  /* wp_nav_menu outputs <li> (and sometimes <ul>); reset list markers so it matches static markup. */
  .primary-nav > ul {
    align-items: center;
    display: contents;
    gap: inherit;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .primary-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .primary-nav li::marker {
    content: none;
  }

  .primary-nav .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .primary-nav a:not(.contact-button) {
    color: var(--color-ink);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
  }

  .primary-nav a:not(.contact-button)::after {
    background: var(--color-accent);
    bottom: -4px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
    width: 100%;
  }

  .primary-nav a:not(.contact-button):hover,
  .primary-nav a:not(.contact-button):focus-visible {
    color: var(--color-accent);
  }

  .primary-nav a:not(.contact-button):hover::after,
  .primary-nav a:not(.contact-button):focus-visible::after {
    transform: scaleX(1);
  }

  .primary-nav a[aria-current="page"]:not(.contact-button) {
    font-weight: 600;
  }

  .primary-nav a[aria-current="page"]:not(.contact-button)::after {
    background: var(--color-accent);
    transform: scaleX(1);
  }

  @media (prefers-reduced-motion: reduce) {
    .primary-nav a:not(.contact-button)::after,
    nav.site-footer__menu a::after,
    .site-footer__menu--contact > a::after {
      transition: none;
    }

    .cta-button--gradient {
      transition-duration: 0.01ms;
    }
  }

  .contact-button {
    align-items: center;
    background: var(--color-ink);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
    height: 55px;
    justify-content: center;
    line-height: 1.2;
    padding: 0 22px 0 24px;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease;
    white-space: nowrap;
    width: 166px;
  }

  .contact-button img {
    filter: brightness(0) invert(1);
    height: 12px;
    width: 16px;
  }

  .contact-button:hover,
  .contact-button:focus-visible {
    background: #201b78;
    transform: translateY(-1px);
  }

  .contact-button.contact-button--header {
    max-width: 240px;
    min-width: 120px;
    width: auto;
  }

  .contact-button--menu {
    display: none;
  }

  .nav-toggle {
    background: transparent;
    border: 0;
    display: none;
    height: 44px;
    padding: 0;
    width: 44px;
  }

  .nav-toggle span {
    background: var(--color-ink);
    border-radius: 999px;
    display: block;
    height: 2px;
    margin: 6px auto;
    transition: transform 160ms ease, opacity 160ms ease;
    width: 24px;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  @media (max-width: 980px) {
    .site-header {
      height: 96px;
      padding: 0 24px;
    }

    .site-header.is-open {
      background: rgba(255, 255, 255, 1);
      border-radius: 0;
      box-shadow: none;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
    }

    .brand {
      transform: scale(0.98);
      transform-origin: left center;
    }

    .nav-toggle {
      cursor: pointer;
      display: block;
      margin-left: auto;
      order: 3;
    }

    .contact-button--header {
      display: none;
    }

    .primary-nav {
      align-items: flex-start;
      background: var(--color-surface);
      border-radius: 0 0 18px 18px;
      box-shadow: var(--shadow-menu);
      display: grid;
      gap: 18px;
      left: 0;
      margin: 0;
      opacity: 0;
      padding: 24px;
      pointer-events: none;
      position: absolute;
      right: 0;
      top: calc(100% - 1px);
      transform: translateY(-10px);
      transition: opacity 160ms ease, transform 160ms ease;
    }

    .site-header.is-open .primary-nav {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .primary-nav .contact-button--menu {
      color: #ffffff;
      display: inline-flex;
      height: 50px;
      justify-content: space-between;
      margin: 6px 0 0;
      padding: 0 20px;
      width: min(100%, 210px);
    }

    .primary-nav .contact-button--menu span {
      color: #ffffff;
    }
  }

  @media (max-width: 640px) {
    .room-page {
      padding: 64px 18px 20px;
    }

    .room-page__back {
      margin-left: 0;
    }

    .room-page__copy,
    .room-page__hero-copy {
      padding: 0;
    }

    .room-page__copy h1,
    .room-page__hero-copy h1 {
      font-size: clamp(24px, 6vw, 30px);
      line-height: 1.15;
      max-width: none;
      margin-bottom: 0;
    }

    .room-page .room-page__location.home-listing__location {
      font-size: 15px;
    }

    .room-page .room-page__location.home-listing__location .home-listing__location-icon svg {
      height: 18px;
      width: 18px;
    }

    .room-page__description {
      font-size: 15px;
      line-height: 1.55;
    }

    .room-page__lead {
      font-size: 14px;
      line-height: 1.5;
      margin-top: 0;
    }

    .room-page__features {
      gap: 12px 20px;
    }

    .room-page__features ul {
      gap: 10px;
    }

    .room-page__features li {
      font-size: 14px;
      gap: 8px;
    }

    .room-page__visual {
      min-height: 0;
    }

    .room-gallery {
      margin-top: 64px;
      padding: 0 18px;
    }

    .room-page__visual-main .room-gallery__track {
      padding: 8px;
    }

    .room-page__visual-main .room-gallery__strip {
      justify-content: center;
    }

    .room-page__visual-main .room-gallery__item {
      flex: 0 0 92px;
      aspect-ratio: 1280 / 853;
      height: auto;
    }

    .room-gallery__strip {
      gap: 8px;
    }

    .room-gallery__item {
      flex-basis: 92px;
      aspect-ratio: 1280 / 853;
      height: auto;
    }

    .room-gallery__arrow {
      height: 40px;
      width: 40px;
    }

    .room-lightbox {
      padding: 12px;
    }

    .room-lightbox__dialog {
      grid-template-columns: 1fr;
    }

    .room-lightbox__nav {
      height: 44px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      z-index: 2;
    }

    .room-lightbox__nav--prev {
      left: 10px;
    }

    .room-lightbox__nav--next {
      right: 10px;
    }
  }

  @media (max-width: 640px) {
    body.room-view {
      background: linear-gradient(180deg, #ffffff 0%, #f5f6fa 100%);
    }

    body:not(.room-view) {
      background: #ffffff;
    }

    .site-header {
      border-radius: 0 0 18px 18px;
      height: 84px;
      padding: 0 18px;
    }

    .brand {
      transform: scale(0.92);
      width: 173px;
    }

    .primary-nav {
      gap: 24px;
      padding: 22px 18px 24px;
    }
  }

  .hero-slider {
    background: #ffffff;
    border-radius: 0;
    height: 520px;
    margin: 0 auto;
    max-width: 1440px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  @media (min-width: 981px) {
    .hero-slider {
      height: 544px;
      margin-top: -24px;
    }

    .hero-slide__content {
      top: 110px;
    }
  }

  .hero-slider__track,
  .hero-slide {
    height: 100%;
    position: relative;
  }

  .hero-slide {
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 520ms ease, transform 620ms ease;
    transform: scale(1.015);
  }

  .hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }

  .hero-slide::before {
    background:
      linear-gradient(
        91deg,
        rgba(255, 252, 252, 0.98) 0%,
        rgba(255, 253, 253, 0.82) 46%,
        rgba(255, 255, 255, 0) 82%
      );
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
  }

  .hero-slide__image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
  }

  .hero-slide__content {
    color: var(--color-ink);
    left: 36px;
    max-width: 760px;
    position: absolute;
    top: 86px;
    z-index: 2;
  }

  .hero-slide__content h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.08;
    margin: 0;
  }

  /* Line breaks: wrapper spans (static markup). Inline accent: use <em> or <span class="is-accent">. */
  .hero-slide__content h1 span:not(.is-accent) {
    display: block;
  }

  .hero-slide__content h1 em,
  .hero-slide__content h1 .is-accent {
    color: var(--color-accent);
    font-style: normal;
    font-weight: inherit;
  }

  .hero-slide__content p em,
  .hero-slide__content p .is-accent {
    color: var(--color-accent);
    font-style: normal;
    font-weight: inherit;
  }

  .hero-slide__content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin: 24px 0 0;
    max-width: 610px;
  }

  .hero-slide__actions {
    display: flex;
    gap: 24px;
    margin-top: 24px;
  }

  .hero-button {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    height: 55px;
    justify-content: center;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
    width: 166px;
  }

  .hero-button--primary {
    background: var(--color-ink);
    color: #ffffff;
    gap: 8px;
  }

  .hero-button--primary img {
    filter: brightness(0) invert(1);
    height: 12px;
    width: 16px;
  }

  .hero-button--secondary {
    border: 1px solid var(--color-ink);
    color: var(--color-ink);
  }

  .hero-button:hover,
  .hero-button:focus-visible {
    transform: translateY(-1px);
  }

  .hero-button--primary:hover,
  .hero-button--primary:focus-visible {
    background: #201b78;
  }

  .hero-button--secondary:hover,
  .hero-button--secondary:focus-visible {
    background: var(--color-ink);
    color: #ffffff;
  }

  .hero-slider__arrow {
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(20, 17, 80, 0.15);
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    height: 38px;
    justify-content: center;
    position: absolute;
    bottom: 26px;
    width: 58px;
    z-index: 3;
  }

  .hero-slider__arrow > span {
    border-color: var(--color-ink) var(--color-ink) transparent transparent;
    border-style: solid;
    border-width: 2px 2px 0 0;
    box-sizing: border-box;
    display: block;
    flex-shrink: 0;
    height: 8px;
    width: 8px;
  }

  .hero-slider__arrow--prev {
    right: 84px;
  }

  .hero-slider__arrow--prev > span {
    transform: rotate(-135deg);
  }

  .hero-slider__arrow--next {
    right: 24px;
  }

  .hero-slider__arrow--next > span {
    transform: rotate(45deg);
  }

  .hero-slider__dots {
    bottom: 26px;
    display: flex;
    gap: 10px;
    left: 36px;
    position: absolute;
    z-index: 3;
  }

  .hero-slider__dots button {
    background: rgba(20, 17, 80, 0.28);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 8px;
    padding: 0;
    transition: background-color 160ms ease, width 160ms ease;
    width: 8px;
  }

  .hero-slider__dots button.is-active {
    background: var(--color-ink);
    width: 28px;
  }
  @media (max-width: 980px) {
    .hero-slider {
      height: 500px;
      width: 100%;
    }

    .hero-slide::before {
      background:
        linear-gradient(
          90deg,
          rgba(255, 252, 252, 0.98) 0%,
          rgba(255, 253, 253, 0.9) 56%,
          rgba(255, 255, 255, 0.18) 100%
        );
    }

    .hero-slide__content {
      left: 28px;
      max-width: 520px;
      top: 70px;
    }

    .hero-slide__content h1 {
      font-size: 50px;
    }

    .hero-slide__content p {
      font-size: 18px;
    }

    .hero-slide__actions {
      gap: 18px;
    }

    .hero-button {
      width: 190px;
    }
  }

  @media (max-width: 640px) {
    .hero-slider {
      border-radius: 0;
      height: 580px;
      width: 100%;
    }

    .hero-slide::before {
      background:
        linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.94) 0%,
          rgba(255, 255, 255, 0.86) 32%,
          rgba(255, 255, 255, 0.58) 58%,
          rgba(255, 255, 255, 0.28) 78%,
          rgba(255, 255, 255, 0.08) 100%
        );
    }

    .hero-slide__image {
      object-position: 58% 58%;
      filter: saturate(1.08) contrast(1.04);
    }

    .hero-slide__content {
      left: 18px;
      max-width: calc(100% - 36px);
      top: 54px;
    }

    .hero-slide__content h1 {
      font-size: 42px;
      line-height: 1.1;
    }

    .hero-slide__content p {
      font-size: 17px;
      line-height: 1.32;
      margin-top: 18px;
    }

    .hero-slide__actions {
      flex-direction: column;
      gap: 24px;
      margin-top: 22px;
    }

    .hero-button {
      height: 52px;
      width: min(100%, 320px);
    }

    .hero-slider__arrow {
      height: 34px;
      width: 52px;
    }

    .hero-slider__arrow > span {
      height: 7px;
      width: 7px;
    }

    .hero-slider__arrow--prev {
      right: 76px;
    }

    .hero-slider__arrow--next {
      right: 18px;
    }

    .hero-slider__dots {
      bottom: 39px;
      left: 18px;
    }
  }

  .homes-section {
    margin: 128px auto 0;
    max-width: none;
    min-width: 0;
    padding: 0 36px 88px;
    position: relative;
    width: 100%;
  }

  .homes-section__header {
    align-items: flex-start;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .homes-section__header h2 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
  }

  .homes-section__header p {
    color: var(--color-ink);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    margin: 6px 0 0;
  }

  .homes-section__controls {
    display: flex;
    flex: 0 0 auto;
    gap: 14px;
    padding-top: 2px;
  }

  .homes-section__controls-row {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    position: absolute;
    right: 36px;
    top: 0;
  }

  .homes-section__arrow {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 17, 80, 0.12);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(148, 148, 148, 0.22);
    cursor: pointer;
    display: flex;
    height: 56px;
    justify-content: center;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
    width: 56px;
  }

  .homes-section__arrow:hover,
  .homes-section__arrow:focus-visible {
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(148, 148, 148, 0.3);
    transform: translateY(-1px);
  }

  .homes-section__arrow > span {
    border-color: rgba(20, 17, 80, 0.3) rgba(20, 17, 80, 0.3) transparent transparent;
    border-style: solid;
    border-width: 2px 2px 0 0;
    box-sizing: border-box;
    display: block;
    flex-shrink: 0;
    height: 12px;
    width: 12px;
  }

  .homes-section__arrow.is-active > span {
    border-color: var(--color-ink) var(--color-ink) transparent transparent;
  }

  .homes-section__arrow--prev > span {
    border-color: rgba(20, 17, 80, 0.28) rgba(20, 17, 80, 0.28) transparent transparent;
    transform: rotate(-135deg);
  }

  .homes-section__arrow--next > span {
    transform: rotate(45deg);
  }

  .homes-section__arrow:disabled {
    cursor: default;
    opacity: 0.42;
    transform: none;
  }

  .homes-grid {
    display: flex;
    gap: 24px;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 10px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }

  .homes-grid::-webkit-scrollbar {
    display: none;
  }

  .homes-grid .home-card,
  .homes-grid .all-home-card {
    flex: 0 0 min(100%, 360px);
  }

  @media (min-width: 981px) {
    .homes-grid {
      margin: 0;
      padding-left: 0;
      padding-right: 0;
    }

    .homes-grid .home-card,
  .homes-grid .all-home-card {
      flex: 0 0 calc((100% - 48px) / 3);
      max-width: calc((100% - 48px) / 3);
    }
  }

  .homes-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 34px;
  }

  .homes-section__cta {
    align-items: center;
    background: var(--color-ink);
    border-radius: 16px;
    color: #ffffff;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    height: 72px;
    justify-content: center;
    padding: 0 34px 0 32px;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease;
    width: 302px;
  }

  .homes-section__cta img {
    filter: brightness(0) invert(1);
    height: 12px;
    width: 16px;
  }

  .homes-section__cta:hover,
  .homes-section__cta:focus-visible {
    background: #201b78;
    transform: translateY(-1px);
  }

  .home-card__link img,
  .all-home-card__link img,
  .homes-section__cta img,
  .hero-button--primary img,
  .cta-section__primary-icon,
  .all-homes-page__cta-button img,
  .contact-button img,
  .site-footer__button img,
  .service-card__link img,
  .services-commitment__button img,
  .room-cta__button.room-cta__button--io .room-cta__button__icon svg {
    transform: translateX(0);
    transition: transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
  }

  .home-card__link:hover img,
  .home-card__link:focus-visible img,
  .all-home-card__link:hover img,
  .all-home-card__link:focus-visible img,
  .homes-section__cta:hover img,
  .homes-section__cta:focus-visible img,
  .hero-button--primary:hover img,
  .hero-button--primary:focus-visible img,
  .cta-section__primary:hover .cta-section__primary-icon,
  .cta-section__primary:focus-visible .cta-section__primary-icon,
  .all-homes-page__cta-button:hover img,
  .all-homes-page__cta-button:focus-visible img,
  .contact-button:hover img,
  .contact-button:focus-visible img,
  .site-footer__button:hover img,
  .site-footer__button:focus-visible img,
  .service-card__link:hover img,
  .service-card__link:focus-visible img,
  .services-commitment__button:hover img,
  .services-commitment__button:focus-visible img,
  .room-cta__button.room-cta__button--io:hover .room-cta__button__icon svg,
  .room-cta__button.room-cta__button--io:focus-visible .room-cta__button__icon svg {
    transform: translateX(4px);
  }

  @media (prefers-reduced-motion: reduce) {
    .home-card__link img,
    .all-home-card__link img,
    .homes-section__cta img,
    .hero-button--primary img,
    .cta-section__primary-icon,
    .all-homes-page__cta-button img,
    .contact-button img,
    .site-footer__button img,
    .service-card__link img,
    .services-commitment__button img,
    .service-detail-spotlight__action img,
    .room-cta__button.room-cta__button--io .room-cta__button__icon svg {
      transition: none;
    }

    .home-card__link:hover img,
    .home-card__link:focus-visible img,
    .all-home-card__link:hover img,
    .all-home-card__link:focus-visible img,
    .homes-section__cta:hover img,
    .homes-section__cta:focus-visible img,
    .hero-button--primary:hover img,
    .hero-button--primary:focus-visible img,
    .cta-section__primary:hover .cta-section__primary-icon,
    .cta-section__primary:focus-visible .cta-section__primary-icon,
    .all-homes-page__cta-button:hover img,
    .all-homes-page__cta-button:focus-visible img,
    .contact-button:hover img,
    .contact-button:focus-visible img,
    .site-footer__button:hover img,
    .site-footer__button:focus-visible img,
    .service-card__link:hover img,
    .service-card__link:focus-visible img,
    .services-commitment__button:hover img,
    .services-commitment__button:focus-visible img,
    .service-detail-spotlight__action:hover img,
    .service-detail-spotlight__action:focus-visible img,
    .room-cta__button.room-cta__button--io:hover .room-cta__button__icon svg,
    .room-cta__button.room-cta__button--io:focus-visible .room-cta__button__icon svg {
      transform: none;
    }
  }

  .benefits-section {
    margin-top: 40px;
    padding: 0 36px 128px;
  }

  .benefits-section__header {
    margin-bottom: 22px;
  }

  .benefits-section__header h2 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
  }

  .benefits-section__header p {
    color: var(--color-ink);
    font-size: 18px;
    line-height: 1.35;
    margin: 8px 0 0;
    max-width: 720px;
  }

  .benefits-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 18px;
    overflow: hidden;
  }

  .benefit-card {
    align-content: start;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    gap: 10px;
    justify-items: center;
    min-height: 132px;
    padding: 20px 22px 18px;
    position: relative;
    text-align: center;
  }

  .benefit-card + .benefit-card {
    border-left: 1px solid rgba(20, 17, 80, 0.08);
  }

  .benefit-card__icon {
    align-items: center;
    background: transparent;
    border-radius: 0;
    color: var(--color-ink);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    overflow: hidden;
    --benefit-icon-scale: 1.22;
    width: 36px;
  }

  .benefit-card__icon svg {
    fill: none;
    display: block;
    height: 36px;
    transform: scale(var(--benefit-icon-scale));
    transform-box: fill-box;
    transform-origin: center;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 36px;
  }

  .benefit-card__icon--image img {
    display: block;
    height: 36px;
    object-fit: contain;
    transform: scale(var(--benefit-icon-scale));
    transform-origin: center;
    width: 36px;
  }

  .benefit-card__icon--furnished {
    --benefit-icon-scale: 1.22;
  }

  .benefit-card__icon--calendar {
    --benefit-icon-scale: 1.22;
  }

  .benefit-card__icon--pin {
    --benefit-icon-scale: 1.22;
  }

  .benefit-card__icon--support {
    --benefit-icon-scale: 1.22;
  }

  .benefit-card h3 {
    color: var(--color-ink);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.18;
    margin: 0;
  }

  .benefit-card p {
    color: var(--color-ink);
    font-size: 13px;
    line-height: 1.42;
    margin: 0;
    opacity: 0.88;
    max-width: 220px;
  }

  .reviews-section {
    padding: 0 36px 128px;
  }

  .reviews-section__header {
    margin-bottom: 22px;
  }

  .reviews-section__header h2 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
  }

  .reviews-section__header p {
    color: var(--color-ink);
    font-size: 18px;
    line-height: 1.35;
    margin: 8px 0 0;
    max-width: 720px;
  }

  .reviews-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(148, 148, 148, 0.22);
    display: grid;
    gap: 18px;
    min-height: 240px;
    padding: 24px 22px 22px;
  }

  .review-card__stars {
    display: flex;
    gap: 4px;
  }

  .review-card__stars svg {
    fill: #ffbf1f;
    height: 20px;
    width: 20px;
  }

  .review-card blockquote {
    color: var(--color-ink);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
  }

  .review-card__author {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-top: auto;
  }

  .review-card__avatar {
    align-items: center;
    background: rgba(20, 17, 80, 0.08);
    border-radius: 50%;
    color: var(--color-ink);
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .review-card__author strong {
    color: var(--color-ink);
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
  }

  .review-card__author span {
    color: var(--color-ink);
    display: block;
    font-size: 13px;
    line-height: 1.2;
    opacity: 0.72;
    margin-top: 3px;
  }

  .cta-section {
    align-items: stretch;
    background: #0a0a3c;
    border-radius: 28px;
    box-shadow: 0 16px 44px rgba(10, 10, 60, 0.35);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
    margin: 0 36px 128px;
    overflow: hidden;
  }

  .cta-section__media {
    min-height: 528px;
    position: relative;
  }

  .cta-section__media::after {
    content: "";
    inset: 0;
    position: absolute;
  }

  .cta-section__media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .cta-section__media--fallback {
    align-items: center;
    background: #06063a;
    display: flex;
    justify-content: center;
    min-height: 320px;
  }

  .cta-section__media--fallback img {
    filter: brightness(0) invert(1);
    height: auto;
    max-height: 42%;
    max-width: 42%;
    object-fit: contain;
    opacity: 0.95;
    width: auto;
  }

  .cta-section--no-media {
    grid-template-columns: 1fr;
    margin-inline: auto;
    max-width: min(100%, 720px);
  }

  .cta-section__content {
    align-content: start;
    background: linear-gradient(155deg, #0f154e 0%, #0a0a3c 45%, #1a1d72 100%);
    color: #ffffff;
    display: grid;
    gap: 18px;
    padding: 48px 44px 40px 42px;
  }

  .cta-section__content h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    max-width: 11ch;
  }

  .cta-section__intro {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.45;
    margin: -6px 0 0;
    max-width: 38ch;
  }

  .cta-section__text {
    display: none;
  }

  .cta-section__list {
    display: grid;
    gap: 18px;
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
  }

  .cta-section__list li {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    font-size: 17px;
    font-weight: 400;
    gap: 16px;
    line-height: 1.3;
    max-width: 34ch;
  }

  .cta-section__list-item--text-only {
    gap: 0;
  }

  .cta-section__icon {
    align-items: center;
    background: transparent;
    border-radius: 0;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    height: 36px;
    justify-content: center;
    width: 36px;
  }

  .cta-section__icon svg {
    fill: none;
    height: 36px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 36px;
  }

  .cta-section__icon--image {
    background: transparent;
  }

  .cta-section__icon-img {
    display: block;
    height: 36px;
    object-fit: contain;
    width: 36px;
  }

  .cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
  }

  .cta-section__primary,
  .cta-section__secondary {
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    height: 56px;
    justify-content: center;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
  }

  /* Primary CTA — icon + hover motion from Uiverse (adeladel522 / giant-earwig-69, MIT); colors + 10px radius unchanged */
  .cta-section__primary {
    background: var(--color-accent);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    padding: 0 22px 0 24px;
    position: relative;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease, border-color 0.3s ease-in-out, box-shadow 0.3s ease;
    width: 194px;
  }

  .cta-section__primary-text,
  .cta-section__primary-icon {
    position: relative;
    z-index: 1;
  }

  .cta-section__primary-icon {
    display: block;
    flex-shrink: 0;
    height: 24px;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
    width: 24px;
  }

  .cta-section__primary::before {
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    content: "";
    height: 100%;
    left: -100px;
    opacity: 0.6;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100px;
  }

  .cta-section__secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.88);
    color: #ffffff;
    padding: 0 22px;
    width: 194px;
  }

  .cta-section__primary:focus-visible,
  .cta-section__secondary:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 2px;
  }

  .cta-section__secondary:hover,
  .cta-section__secondary:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: translateY(-1px);
  }

  .cta-section__primary:hover,
  .cta-section__primary:focus-visible {
    background: #ff4d4d;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    transform: scale(1.05);
  }

  .cta-section__primary:hover .cta-section__primary-icon,
  .cta-section__primary:focus-visible .cta-section__primary-icon {
    transform: translate3d(8px, 0, 0);
  }

  .cta-section__primary:hover::before,
  .cta-section__primary:focus-visible::before {
    animation: qs-cta-shine 1.5s ease-out infinite;
  }

  @keyframes qs-cta-shine {
    0% {
      left: -100px;
    }

    60% {
      left: 100%;
    }

    to {
      left: 100%;
    }
  }

  .site-footer {
    box-sizing: border-box;
    margin: 0 auto 40px;
    max-width: 1440px;
    min-width: 0;
    padding: 8px 36px 0;
    width: 100%;
  }

  .site-footer__top {
    align-items: center;
    background: transparent;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    padding: 16px 0 22px;
  }

  .site-footer__brand {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    text-decoration: none;
  }

  .site-footer__logo {
    display: block;
    height: 44px;
    max-width: 166px;
    object-fit: contain;
    width: auto;
  }

  .site-footer__mark {
    height: 44px;
    width: 46px;
  }

  .site-footer__wordmark {
    height: 24px;
    margin-left: 2px;
    width: 118px;
  }

  .site-footer__copy {
    display: grid;
    gap: 8px;
    margin-right: auto;
    max-width: 520px;
  }

  .site-footer__headline {
    color: var(--color-ink);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
  }

  .site-footer__text {
    color: var(--color-ink);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    opacity: 0.76;
  }

  .site-footer__menus {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 8px 0 22px;
  }

  .site-footer__menu {
    display: grid;
    gap: 12px;
    align-content: start;
  }

  .site-footer__menu h3 {
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 2px;
  }

  .site-footer__menu a,
  .site-footer__menu span {
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  nav.site-footer__menu a,
  .site-footer__menu--contact > a {
    justify-self: start;
    max-width: 100%;
    position: relative;
    width: fit-content;
  }

  nav.site-footer__menu a::after,
  .site-footer__menu--contact > a::after {
    background: var(--color-accent);
    bottom: -3px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
    width: 100%;
  }

  .site-footer__menu a:hover,
  .site-footer__menu a:focus-visible {
    color: var(--color-accent);
  }

  nav.site-footer__menu a:hover::after,
  nav.site-footer__menu a:focus-visible::after,
  .site-footer__menu--contact > a:hover::after,
  .site-footer__menu--contact > a:focus-visible::after {
    transform: scaleX(1);
  }

  .site-footer__menu--contact a,
  .site-footer__menu--contact span {
    opacity: 0.8;
  }

  .site-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
  }

  .site-footer__socials a {
    align-items: center;
    border: 1px solid rgba(20, 17, 80, 0.14);
    border-radius: 999px;
    color: var(--color-ink);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    text-decoration: none;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
    width: 34px;
  }

  .site-footer__socials a:hover,
  .site-footer__socials a:focus-visible {
    border-color: rgba(20, 17, 80, 0.32);
    color: var(--color-accent);
    transform: translateY(-1px);
  }

  .site-footer__socials svg {
    fill: none;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 16px;
  }

  .site-footer__socials img.site-footer__social-img {
    display: block;
    height: 16px;
    object-fit: contain;
    width: 16px;
  }

  .site-footer__button {
    align-items: center;
    background: var(--color-ink);
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
    height: 50px;
    justify-content: center;
    padding: 0 18px 0 20px;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease;
    width: 162px;
  }

  .site-footer__button img {
    filter: brightness(0) invert(1);
    height: 12px;
    width: 16px;
  }

  /* Header + footer primary CTAs — Uiverse “strong-pug-22” (Allyhere), MIT */
  .contact-button.contact-button--header.cta-button--gradient,
  .contact-button.contact-button--menu.cta-button--gradient,
  .site-footer__button.cta-button--gradient {
    --cta-glow-1: hsl(194 100% 69%);
    --cta-glow-2: hsl(217 100% 56%);
    --cta-text: hsl(0 0% 100%);
    background-color: transparent;
    background-image: linear-gradient(
      325deg,
      var(--cta-glow-2) 0%,
      var(--cta-glow-1) 55%,
      var(--cta-glow-2) 90%
    );
    background-size: 280% auto;
    background-position: left center;
    border: none;
    border-radius: 8px;
    box-shadow:
      0 0 20px rgba(71, 184, 255, 0.5),
      0 5px 5px -1px rgba(58, 125, 233, 0.25),
      inset 4px 4px 8px rgba(175, 230, 255, 0.5),
      inset -4px -4px 8px rgba(19, 95, 216, 0.35);
    color: var(--cta-text);
    transition: background-position 0.8s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .contact-button.contact-button--menu.cta-button--gradient {
    max-width: min(100%, 220px);
    min-width: 120px;
    width: auto;
  }

  .site-footer__button.cta-button--gradient {
    max-width: 260px;
    min-width: 120px;
    width: auto;
  }

  .contact-button.contact-button--header.cta-button--gradient:hover,
  .contact-button.contact-button--header.cta-button--gradient:focus-visible,
  .contact-button.contact-button--menu.cta-button--gradient:hover,
  .contact-button.contact-button--menu.cta-button--gradient:focus-visible,
  .site-footer__button.cta-button--gradient:hover,
  .site-footer__button.cta-button--gradient:focus-visible {
    background-color: transparent;
    background-image: linear-gradient(
      325deg,
      var(--cta-glow-2) 0%,
      var(--cta-glow-1) 55%,
      var(--cta-glow-2) 90%
    );
    background-position: right top;
    transform: none;
  }

  .contact-button.contact-button--header.cta-button--gradient:focus-visible,
  .contact-button.contact-button--menu.cta-button--gradient:focus-visible,
  .site-footer__button.cta-button--gradient:focus-visible {
    outline: none;
    box-shadow:
      0 0 0 3px var(--cta-text),
      0 0 0 6px var(--cta-glow-2),
      0 0 20px rgba(71, 184, 255, 0.45),
      0 5px 5px -1px rgba(58, 125, 233, 0.25),
      inset 4px 4px 8px rgba(175, 230, 255, 0.5),
      inset -4px -4px 8px rgba(19, 95, 216, 0.35);
  }

  .contact-button.contact-button--header.cta-button--gradient:active,
  .contact-button.contact-button--menu.cta-button--gradient:active,
  .site-footer__button.cta-button--gradient:active {
    transform: scale(0.98);
  }

    .site-footer__bottom {
      align-items: center;
      border-top: 1px solid rgba(20, 17, 80, 0.08);
      color: var(--color-ink);
      display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    justify-content: space-between;
    padding: 18px 0 0;
  }

  .site-footer__bottom p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.74;
  }

  .site-footer__signature {
    margin-left: 8px;
    white-space: nowrap;
  }

  .site-footer__signature-link {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
  }

  .site-footer__signature-link:hover,
  .site-footer__signature-link:focus-visible {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  @media (max-width: 980px) {
    .homes-section {
      margin-top: 64px;
      padding-bottom: 72px;
      padding-left: 16px;
      padding-right: 16px;
    }

    .homes-section__controls-row {
      position: static;
      align-self: stretch;
      display: flex;
      justify-content: center;
      margin: 14px 0 16px;
      width: 100%;
    }

    .homes-section__controls {
      display: flex;
    }

    .homes-grid {
      gap: 18px;
    }

    .homes-grid .home-card,
  .homes-grid .all-home-card {
      flex-basis: calc((100% - 18px) / 2);
      max-width: calc((100% - 18px) / 2);
    }

    .homes-section__footer {
      margin-top: 28px;
    }

    .homes-section__cta {
      height: 64px;
      width: min(100%, 302px);
    }

    .benefits-section {
      margin-top: 0;
      padding: 0 16px 96px;
    }

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

    .benefits-section__header h2 {
      font-size: 28px;
    }

    .benefits-section__header p {
      font-size: 16px;
    }

    .benefit-card {
      min-height: 128px;
      padding: 18px 16px 16px;
    }

    .benefit-card h3 {
      font-size: 16px;
    }

    .benefit-card p {
      font-size: 13px;
    }

    .benefit-card__icon--image img {
      height: 36px;
      width: 36px;
    }

    .reviews-section {
      padding: 0 16px 96px;
    }

    .reviews-grid {
      gap: 16px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-section__header h2 {
      font-size: 28px;
    }

    .reviews-section__header p {
      font-size: 16px;
    }

    .review-card {
      min-height: 226px;
      padding: 22px 20px 20px;
    }

    .review-card blockquote {
      font-size: 16px;
    }

    .cta-section {
      margin: 0 16px 96px;
    }

    .cta-section__content {
      gap: 16px;
      padding: 34px 30px 30px;
    }

    .cta-section__content h2 {
      font-size: 28px;
    }

    .cta-section__intro {
      font-size: 15px;
    }

    .cta-section__text {
      display: none;
    }

    .cta-section__list li {
      font-size: 15px;
      gap: 14px;
    }
    .cta-section__secondary {
      height: 50px;
      width: min(100%, 194px);
      font-size: 15px;
    }

    .site-footer {
      margin: 0 auto 32px;
      max-width: 1440px;
      padding: 22px 16px 0;
      width: 100%;
    }

    .site-footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      padding: 0 0 18px;
    }

    .site-footer__copy {
      max-width: none;
    }

    .site-footer__headline {
      font-size: 16px;
    }

    .site-footer__text {
      font-size: 13px;
    }

    .site-footer__menus {
      gap: 18px 24px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      padding: 0 0 18px;
    }

    .site-footer__menu h3 {
      font-size: 14px;
    }

    .site-footer__menu a,
    .site-footer__menu span {
      font-size: 14px;
    }

    .site-footer__socials {
      gap: 8px;
      flex-wrap: wrap;
    }

    .site-footer__socials a {
      height: 32px;
      width: 32px;
    }

    .site-footer__socials svg {
      height: 15px;
      width: 15px;
    }

    .site-footer__socials img.site-footer__social-img {
      height: 15px;
      width: 15px;
    }

    .site-footer__button {
      width: min(100%, 220px);
    }

    .site-footer__bottom {
      gap: 10px;
      padding: 14px 0 0;
    }

    .site-footer__bottom p {
      font-size: 13px;
    }
  }

  @media (max-width: 640px) {
    .homes-section {
      margin-top: 64px;
      padding: 0 18px 64px;
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .homes-section__header {
      display: grid;
      gap: 16px;
      margin-bottom: 20px;
    }

    .homes-section__header h2 {
      font-size: 28px;
    }

    .homes-section__header p {
      font-size: 16px;
    }

    .homes-section__controls-row {
      position: static;
      align-self: stretch;
      display: flex;
      justify-content: center;
      margin: 14px 0 16px;
      order: 4 !important;
      width: 100%;
    }

    .homes-section__controls {
      display: flex;
      gap: 12px;
      padding-top: 0;
    }

    .homes-grid {
      gap: 16px;
      order: 3 !important;
    }

    .homes-grid .home-card,
  .homes-grid .all-home-card {
      flex-basis: 100%;
      max-width: 100%;
    }

    .homes-section__footer {
      margin-top: 24px;
      order: 5 !important;
    }

    .homes-section__cta {
      max-width: 302px;
      width: 100%;
    }

    .benefits-section {
      margin-top: 0;
      padding: 0 18px 72px;
    }

    .benefits-section__header {
      margin-bottom: 18px;
    }

    .benefits-section__header h2 {
      font-size: 26px;
    }

    .benefits-section__header p {
      font-size: 15px;
    }

    .benefits-grid {
      grid-template-columns: 1fr;
    }

    .benefit-card {
      min-height: 120px;
    }

    .benefit-card + .benefit-card {
      border-left: 0;
      border-top: 1px solid rgba(20, 17, 80, 0.08);
    }

    .benefit-card__icon--image img {
      height: 36px;
      width: 36px;
    }

    .reviews-section {
      padding: 0 18px 72px;
    }

    .reviews-section__header {
      margin-bottom: 18px;
    }

    .reviews-section__header h2 {
      font-size: 26px;
    }

    .reviews-section__header p {
      font-size: 15px;
    }

    .reviews-grid {
      grid-template-columns: 1fr;
    }

    .review-card {
      min-height: 214px;
      padding: 20px 18px 18px;
    }

    .review-card blockquote {
      font-size: 15px;
    }

    .cta-section {
      margin: 0 18px 64px;
      grid-template-columns: 1fr;
    }

    .cta-section__media {
      min-height: 300px;
      order: 1;
    }

    .cta-section__content {
      gap: 14px;
      padding: 24px 20px 22px;
    }

    .cta-section__content h2 {
      font-size: 24px;
      max-width: 12ch;
    }

    .cta-section__intro {
      font-size: 14px;
    }

    .cta-section__text {
      display: none;
    }

    .cta-section__list {
      gap: 12px;
    }

    .cta-section__list li {
      font-size: 14px;
      gap: 12px;
      max-width: none;
    }

    .cta-section__actions {
      gap: 12px;
      margin-top: 6px;
    }

    .cta-section__primary,
    .cta-section__secondary {
      height: 46px;
      width: 100%;
      font-size: 16px;
    }

    .site-footer {
      margin: 0 auto 28px;
      max-width: 1440px;
      padding: 0 18px;
      width: 100%;
    }

    .site-footer__top {
      padding: 0 0 16px;
    }

    .site-footer__brand {
      transform: scale(0.94);
      transform-origin: left center;
    }

    .site-footer__copy {
      gap: 6px;
    }

    .site-footer__headline {
      font-size: 15px;
    }

    .site-footer__text {
      font-size: 12px;
    }

    .site-footer__menus {
      gap: 16px;
      grid-template-columns: 1fr;
      padding: 0 0 16px;
    }

    .site-footer__menu {
      gap: 10px;
    }

    .site-footer__menu h3 {
      font-size: 13px;
    }

    .site-footer__menu a,
    .site-footer__menu span {
      font-size: 13px;
    }

    .site-footer__bottom {
      align-items: flex-start;
      flex-direction: column;
      gap: 6px;
      padding: 12px 0 0;
    }
  }

  .room-page {
    background: transparent;
    margin: 0 auto;
    max-width: 1440px;
    min-height: 24px;
    padding: 64px var(--page-gutter) 48px;
  }

  .room-page .quickstay-breadcrumb {
    margin-bottom: 12px;
  }

  .room-page__back {
    align-items: center;
    box-sizing: border-box;
    color: rgba(20, 17, 80, 0.55);
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
    justify-content: flex-start;
    line-height: 1.3;
    margin: 0 0 8px;
    padding: 6px 0;
    text-align: left;
    text-decoration: none;
    transition: color 0.2s ease;
    width: 100%;
  }

  .room-page__back:hover,
  .room-page__back:focus-visible {
    color: rgba(20, 17, 80, 0.78);
  }

  .room-page__back:focus-visible {
    outline: 2px solid rgba(20, 17, 80, 0.22);
    outline-offset: 2px;
  }

  .room-page__back-slot {
    align-items: center;
    display: flex;
    flex: 0 0 18px;
    height: 36px;
    justify-content: flex-start;
    width: 18px;
  }

  .room-page__back-slot svg {
    fill: none;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
    width: 16px;
  }

  .room-page__back-text {
    min-width: 0;
  }

  .room-page__hero {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.12fr);
    margin-top: 22px;
    min-height: 0;
  }

  .room-page__copy,
  .room-page__hero-copy {
    align-content: start;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 18px 4px;
  }

  .room-page__copy h1,
  .room-page__hero-copy h1 {
    color: var(--color-ink);
    font-size: clamp(28px, 3.1vw, 40px);
    font-weight: 600;
    line-height: 1.18;
    margin: 0;
    max-width: 22ch;
  }

  /* Room hero: location row + excerpt sized to balance the large title */
  .room-page .room-page__location.home-listing__location {
    color: rgba(20, 17, 80, 0.62);
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
  }

  .room-page .room-page__location.home-listing__location .home-listing__location-icon {
    color: rgba(20, 17, 80, 0.5);
  }

  .room-page .room-page__location.home-listing__location .home-listing__location-icon svg {
    height: 18px;
    width: 18px;
  }

  .room-page__description {
    color: rgba(20, 17, 80, 0.78);
    font-size: clamp(15px, 1.25vw, 17px);
    font-weight: 400;
    line-height: 1.55;
    margin: 0;
    max-width: 52ch;
  }

  .room-page__lead {
    color: rgba(20, 17, 80, 0.86);
    font-size: 16px;
    line-height: 1.45;
    margin: 0 0 16px;
    max-width: 56ch;
  }

  .room-page__features {
    display: grid;
    gap: 14px 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    max-width: 540px;
    align-items: start;
  }

  .room-page__features ul {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .room-page__features li {
    align-items: center;
    color: var(--color-ink);
    display: grid;
    font-size: 16px;
    font-weight: 500;
    gap: 6px;
    grid-template-columns: 40px minmax(0, 1fr);
    line-height: 1.15;
  }

  .room-page__feature-icon {
    align-items: center;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    justify-self: start;
    line-height: 0;
    width: 40px;
  }

  .room-page__feature-icon svg {
    fill: none;
    height: 36px;
    stroke: var(--color-ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 36px;
  }

  .quickstay-icon-raw {
    align-items: center;
    display: inline-flex;
    line-height: 0;
  }

  .quickstay-icon-raw svg {
    display: block;
    height: 24px;
    width: 24px;
  }

  .room-page__visual {
    align-self: stretch;
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .room-page__visual-main {
    border-radius: 20px;
    box-shadow: 0 22px 50px rgba(20, 17, 80, 0.16);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    min-height: 0;
    overflow: hidden;
    position: relative;
  }

  .room-page__visual-image {
    display: block;
    inset: 0;
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
  }

  .room-page__zoom-button {
    align-items: center;
    background: rgba(20, 17, 80, 0.9);
    border: 0;
    border-radius: 999px;
    top: 16px;
    box-shadow: 0 14px 26px rgba(20, 17, 80, 0.18);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    position: absolute;
    right: 16px;
    width: 46px;
    z-index: 2;
  }

  .room-page__zoom-button svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 18px;
  }

  .room-page__visual-main .room-gallery {
    bottom: 16px;
    left: 16px;
    margin: 0;
    max-width: none;
    padding: 0;
    position: absolute;
    right: 16px;
    z-index: 2;
  }

  .room-page__visual-main .room-gallery__track {
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(20, 17, 80, 0.12);
    gap: 10px;
    padding: 10px;
    backdrop-filter: blur(12px);
    min-width: 0;
  }

  .room-page__visual-main .room-gallery__item {
    flex: 0 0 calc((100% - 30px) / 4);
    aspect-ratio: 1280 / 853;
    height: auto;
  }

  .room-gallery {
    margin: 64px auto 128px;
    max-width: 1440px;
    padding: 0 36px;
  }

  .room-gallery__track {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .room-gallery__strip {
    display: flex;
    gap: 8px;
    overflow: hidden;
    min-width: 0;
  }

  .room-gallery__item {
    background: transparent;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    flex: 0 0 calc((100% - 24px) / 4);
    height: 186px;
    overflow: hidden;
    padding: 0;
    position: relative;
  }

  .room-gallery__item img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .room-gallery__item::after {
    border: 1px solid transparent;
    border-radius: 10px;
    content: "";
    inset: 0;
    position: absolute;
    transition: border-color 160ms ease;
  }

  .room-gallery__item:hover::after,
  .room-gallery__item:focus-visible::after {
    border-color: rgba(32, 30, 134, 0.35);

  }

  @media (min-width: 981px) and (hover: hover) and (pointer: fine) {
    .room-page__visual-main .room-gallery {
      opacity: 0.18;
      transition: opacity 220ms ease;
    }

    .room-page__visual-main .room-gallery:hover,
    .room-page__visual-main .room-gallery:focus-within {
      opacity: 1;
    }

  }

  .room-gallery__arrow {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(20, 17, 80, 0.12);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(20, 17, 80, 0.08);
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    width: 48px;
  }

  .room-gallery__arrow > span {
    border-color: var(--color-ink) var(--color-ink) transparent transparent;
    border-style: solid;
    border-width: 2px 2px 0 0;
    box-sizing: border-box;
    display: block;
    flex-shrink: 0;
    height: 10px;
    width: 10px;
  }

  .room-gallery__arrow--prev > span {
    transform: rotate(-135deg);
  }

  .room-gallery__arrow--next > span {
    transform: rotate(45deg);
  }

  .room-lightbox {
    align-items: center;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 80;
  }

  .room-lightbox[hidden] {
    display: none;
  }

  .room-lightbox:not([hidden]) {
    display: flex;
  }

  .room-lightbox__backdrop {
    background: rgba(5, 5, 10, 0.72);
    inset: 0;
    position: absolute;
  }

  .room-lightbox__dialog {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(0, min(92vw, 1120px)) auto;
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .room-lightbox__figure {
    background: #111;
    border-radius: 20px;
    margin: 0;
    overflow: hidden;
  }

  .room-lightbox__image {
    display: block;
    max-height: 78vh;
    object-fit: contain;
    width: 100%;
  }

  .room-lightbox__nav,
  .room-lightbox__close {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    height: 52px;
    justify-content: center;
    width: 52px;
  }

  .room-lightbox__nav > span {
    border-color: var(--color-ink) var(--color-ink) transparent transparent;
    border-style: solid;
    border-width: 2px 2px 0 0;
    box-sizing: border-box;
    display: block;
    flex-shrink: 0;
    height: 12px;
    width: 12px;
  }

  .room-lightbox__nav--prev > span {
    transform: rotate(-135deg);
  }

  .room-lightbox__nav--next > span {
    transform: rotate(45deg);
  }

  .room-lightbox__close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    font-size: 30px;
    line-height: 1;
  }

  .room-about {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    margin: 128px auto 128px;
    max-width: 1440px;
    padding: 0 36px;
  }

  .room-about__copy {
    max-width: 560px;
  }

  .room-about__copy h2 {
    color: var(--color-ink);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 18px;
  }

  .room-about__copy p {
    color: rgba(20, 17, 80, 0.82);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 12px;
  }

  .room-about__copy p:last-child {
    margin-bottom: 0;
  }

  .room-about__panel {
    background: rgba(20, 17, 80, 0.03);
    border-radius: 8px;
    padding: 30px 32px;
    justify-self: end;
    width: 100%;
    max-width: 460px;
  }

  .room-about__details {
    display: grid;
    gap: 26px;
    margin: 0;
  }

  .room-about__detail {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 142px minmax(0, 1fr);
  }

  .room-about__detail dt {
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    align-items: center;
    display: inline-flex;
    gap: 10px;
  }

  .room-about__icon {
    align-items: center;
    color: #d0d1d8;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    width: 24px;
  }

  .room-about__icon svg {
    fill: none;
    height: 24px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 24px;
  }

  .room-about__detail dd {
    color: var(--color-ink);
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
    padding-top: 1px;
  }

  .room-features {
    margin: 128px auto 128px;
    max-width: 1440px;
    padding: 0 36px;
    scroll-margin-top: 96px;
  }

  .room-features__header h2 {
    color: var(--color-ink);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 18px;
  }

  .room-features__grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #ffffff;
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(20, 17, 80, 0.06);
    overflow: hidden;
  }

  .room-features__card {
    align-items: center;
    background: #ffffff;
    border-right: 1px solid rgba(20, 17, 80, 0.08);
    border-bottom: 1px solid rgba(20, 17, 80, 0.08);
    color: var(--color-ink);
    display: inline-flex;
    gap: 14px;
    min-height: 84px;
    padding: 18px 20px;
  }

  .room-features__card:nth-child(4n) {
    border-right: 0;
  }

  .room-features__grid:has(.room-features__card:last-child:nth-child(4n)) .room-features__card:nth-last-child(-n + 4),
  .room-features__grid:has(.room-features__card:last-child:nth-child(4n + 1)) .room-features__card:nth-last-child(-n + 1),
  .room-features__grid:has(.room-features__card:last-child:nth-child(4n + 2)) .room-features__card:nth-last-child(-n + 2),
  .room-features__grid:has(.room-features__card:last-child:nth-child(4n + 3)) .room-features__card:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .room-features__icon {
    align-items: center;
    color: #d0d1d8;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    width: 36px;
  }

  .room-features__icon svg {
    fill: none;
    height: 36px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 36px;
  }

  .room-features__icon .quickstay-icon-raw svg,
  .room-page__feature-icon .quickstay-icon-raw svg {
    fill: currentColor;
    height: 36px;
    stroke: currentColor;
    width: 36px;
  }

  .room-features__card span:last-child {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
  }

  .room-features__footer {
    display: flex;
    justify-content: center;
    margin-top: 22px;
  }

  .room-location {
    align-items: start;
    display: grid;
    gap: 36px;
    grid-template-areas: "copy visual";
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    margin: 128px auto 0;
    max-width: 1440px;
    padding: 0 36px;
  }

  .room-location--text-only {
    grid-template-areas: "copy";
    grid-template-columns: minmax(0, 1fr);
  }

  .room-location__copy {
    grid-area: copy;
    display: grid;
    gap: 0;
    padding-top: 0;
  }

  .room-location--text-only .room-location__copy {
    max-width: none;
  }

  .room-location__copy h2 {
    color: var(--color-ink);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 12px;
  }

  .room-location__text {
    color: rgba(20, 17, 80, 0.86);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 16px;
    max-width: none;
    width: 100%;
  }

  .room-location__list {
    display: grid;
    gap: 14px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .room-location__list li {
    align-items: start;
    color: var(--color-ink);
    display: grid;
    gap: 8px 10px;
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .room-location__label,
  .room-location__time {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .room-location__icon {
    align-items: center;
    color: #4d5b99;
    display: inline-flex;
    justify-content: center;
  }

  .room-location__icon svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 18px;
  }

  .room-location__label {
    font-size: 15px;
    font-weight: 500;
  }

  .room-location__time {
    color: rgba(20, 17, 80, 0.68);
    font-size: 14px;
    font-weight: 500;
    grid-column: 2 / -1;
    margin-top: -4px;
    white-space: nowrap;
  }

  .room-location--text-only .room-location__text {
    max-width: none;
  }

  .room-location--text-only .room-location__list {
    max-width: none;
    width: 100%;
  }

  .room-location__visual {
    grid-area: visual;
    position: relative;
    min-height: 380px;
    overflow: hidden;
    isolation: isolate;
  }

  .room-location__preview,
  .room-location__map-canvas,
  .room-location__map-frame {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 22px 50px rgba(20, 17, 80, 0.16);
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
  }

  .room-location__preview {
    z-index: 1;
  }

  .room-location__map-canvas,
  .room-location__map-frame {
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 2;
  }

  .room-location__map-canvas.leaflet-container {
    background: #eef1f8;
  }

  .room-location.is-map-open .room-location__preview {
    filter: saturate(0.9) brightness(0.96);
    opacity: 0.18;
  }

  .room-location.is-map-open .room-location__map-canvas,
  .room-location.is-map-open .room-location__map-frame {
    opacity: 1;
    pointer-events: auto;
  }

  .room-location__overlay {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    bottom: 20px;
    box-shadow: 0 18px 40px rgba(20, 17, 80, 0.16);
    display: grid;
    gap: 14px;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    left: 50%;
    padding: 18px 20px;
    position: absolute;
    transform: translateX(-50%);
    z-index: 4;
    width: min(460px, calc(100% - 40px));
  }

  .room-location__overlay-pin {
    align-items: center;
    color: var(--color-ink);
    display: inline-flex;
    justify-content: center;
  }

  .room-location__overlay-pin svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 20px;
  }

  .room-location__overlay-copy {
    display: grid;
    gap: 2px;
  }

  .room-location__overlay-copy strong,
  .room-location__overlay-copy span {
    color: var(--color-ink);
  }

  .room-location__overlay-copy strong {
    font-size: 16px;
    font-weight: 600;
  }

  .room-location__overlay-copy span {
    font-size: 14px;
    font-weight: 500;
  }

  .room-location__map-button {
    align-items: center;
    background: var(--color-ink);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    text-decoration: none;
    white-space: nowrap;
  }

  .room-cta {
    margin: 96px auto 128px;
    max-width: 1440px;
    padding: 0 36px;
  }

  .room-cta__card {
    align-items: center;
    background: linear-gradient(135deg, #0f154e 0%, #0a0a3c 50%, #16227a 100%);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(10, 10, 60, 0.32);
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 40px 48px;
  }

  .room-cta__actions {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-self: end;
  }

  .room-cta__copy h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 10px;
  }

  .room-cta__copy p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    max-width: 34ch;
  }

  .room-cta__button {
    align-items: center;
    align-self: center;
    background: var(--color-accent);
    border: 1px solid transparent;
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    min-height: 60px;
    min-width: 180px;
    padding: 0 24px;
    text-decoration: none;
    white-space: nowrap;
  }

  .room-cta__button--secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
  }

  .room-cta__button__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .room-cta__button:not(.room-cta__button--io):not(.room-cta__button--secondary) .room-cta__button__label::after {
    content: "→";
    font-size: 1em;
    line-height: 1;
  }

  .room-cta__button--secondary .room-cta__button__label::after {
    content: "";
  }

  /* Home single CTA primary — Uiverse “fresh-crab-41” / adamgiebl “new-bird-34”, MIT; radius + accent unchanged */
  .room-cta__button.room-cta__button--io {
    box-shadow: inset 0 0 26px -10px rgba(0, 0, 0, 0.18);
    justify-content: flex-start;
    overflow: hidden;
    padding: 6px 3.5em 6px 1.15em;
    position: relative;
  }

  .room-cta__button.room-cta__button--io .room-cta__button__label::after {
    content: none;
  }

  .room-cta__button.room-cta__button--io .room-cta__button__icon {
    align-items: center;
    background: #ffffff;
    border-radius: 9px;
    box-shadow: 0.1em 0.1em 0.55em 0.15em rgba(255, 49, 49, 0.38);
    color: var(--color-accent);
    display: flex;
    height: calc(100% - 12px);
    justify-content: center;
    position: absolute;
    right: 6px;
    top: 6px;
    transition: width 0.3s ease, transform 0.2s ease;
    width: 2.2em;
  }

  .room-cta__button.room-cta__button--io:hover .room-cta__button__icon,
  .room-cta__button.room-cta__button--io:focus-visible .room-cta__button__icon {
    width: calc(100% - 12px);
  }

  .room-cta__button.room-cta__button--io .room-cta__button__icon svg {
    flex-shrink: 0;
    height: 1.1em;
    width: 1.1em;
    transition: transform 0.3s ease;
  }

  .room-cta__button.room-cta__button--io:hover .room-cta__button__icon svg,
  .room-cta__button.room-cta__button--io:focus-visible .room-cta__button__icon svg {
    transform: translateX(0.12em);
  }

  .room-cta__button.room-cta__button--io:active .room-cta__button__icon {
    transform: scale(0.95);
  }

  .room-features__see-all {
    background: #ffffff;
    border: 1px solid rgba(20, 17, 80, 0.42);
    border-radius: 8px;
    color: var(--color-ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    min-height: 40px;
    padding: 0 28px;
  }

  .room-features-modal {
    align-items: center;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 90;
  }

  .room-features-modal[hidden] {
    display: none;
  }

  .room-features-modal:not([hidden]) {
    display: flex;
  }

  .room-features-modal__backdrop {
    background: rgba(5, 5, 10, 0.6);
    inset: 0;
    position: absolute;
  }

  .room-features-modal__dialog {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(20, 17, 80, 0.18);
    max-width: 1120px;
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 26px;
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .room-features-modal__header h2 {
    color: var(--color-ink);
    font-size: 22px;
    margin: 0 0 18px;
  }

  .room-features-modal__close {
    background: transparent;
    border: 0;
    color: var(--color-ink);
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    position: absolute;
    right: 12px;
    top: 8px;
  }

  .room-features-modal__grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #ffffff;
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(20, 17, 80, 0.06);
    overflow: hidden;
    position: relative;
  }

  .room-features-modal__item {
    align-items: center;
    background: #ffffff;
    border-right: 1px solid rgba(20, 17, 80, 0.08);
    border-bottom: 1px solid rgba(20, 17, 80, 0.08);
    display: flex;
    gap: 14px;
    min-height: 80px;
    padding: 18px 20px;
  }

  .room-features-modal__item:nth-child(4n) {
    border-right: 0;
  }

  .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(4n)) .room-features-modal__item:nth-last-child(-n + 4),
  .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(4n + 1)) .room-features-modal__item:nth-last-child(-n + 1),
  .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(4n + 2)) .room-features-modal__item:nth-last-child(-n + 2),
  .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(4n + 3)) .room-features-modal__item:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .room-features-modal__item span:last-child {
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 600;
  }
  @media (max-width: 980px) {
    .room-page {
      padding: 64px 24px 32px;
    }

    .room-page__hero {
      grid-template-columns: 1fr;
      gap: 22px;
      min-height: auto;
    }

    .room-page__copy,
    .room-page__hero-copy {
      padding: 6px 0 0;
    }

    .room-page__copy h1,
    .room-page__hero-copy h1 {
      font-size: clamp(26px, 5.2vw, 34px);
      margin-bottom: 0;
    }

    .room-page .room-page__location.home-listing__location {
      font-size: 15px;
    }

    .room-page .room-page__location.home-listing__location .home-listing__location-icon svg {
      height: 18px;
      width: 18px;
    }

    .room-page__description {
      font-size: clamp(15px, 2.4vw, 16px);
    }

    .room-page__lead {
      font-size: 15px;
      margin-top: 0;
    }

    .room-page__features {
      max-width: none;
    }

    .room-page__visual {
      min-height: 0;
    }

    .room-page__visual-main {
      aspect-ratio: 16 / 9;
      min-height: 0;
    }

    .room-page__visual-main .room-gallery__item {
      flex-basis: clamp(72px, 20vw, 92px);
      aspect-ratio: 1280 / 853;
      height: auto;
    }

    .room-page__visual-main .room-gallery {
      margin: 0;
    }

    .room-gallery__item {
      flex-basis: clamp(72px, 20vw, 92px);
      aspect-ratio: 1280 / 853;
      height: auto;
    }

    .room-gallery__arrow {
      height: 44px;
      width: 44px;
    }

    .room-about {
      gap: 24px;
      grid-template-columns: 1fr;
      margin: 64px auto 64px;
      padding: 0 24px;
    }

    .room-about__copy {
      max-width: none;
    }

    .room-about__panel {
      max-width: 100%;
      justify-self: stretch;
    }

    .room-features {
      margin: 64px auto 64px;
      padding: 0 24px;
    }

    .room-features__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .room-features__card {
      border-bottom: 1px solid rgba(20, 17, 80, 0.08);
      border-right: 1px solid rgba(20, 17, 80, 0.08);
    }

    .room-features__card:nth-child(4n) {
      border-right: 1px solid rgba(20, 17, 80, 0.08);
    }

    .room-features__card:nth-child(3n) {
      border-right: 0;
    }

    .room-features__grid:has(.room-features__card:last-child:nth-child(3n)) .room-features__card:nth-last-child(-n + 3),
    .room-features__grid:has(.room-features__card:last-child:nth-child(3n + 1)) .room-features__card:nth-last-child(-n + 1),
    .room-features__grid:has(.room-features__card:last-child:nth-child(3n + 2)) .room-features__card:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .room-features-modal__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .room-features-modal__item {
      border-bottom: 1px solid rgba(20, 17, 80, 0.14);
      border-right: 1px solid rgba(20, 17, 80, 0.14);
    }

    .room-features-modal__item:nth-child(4n) {
      border-right: 1px solid rgba(20, 17, 80, 0.14);
    }

    .room-features-modal__item:nth-child(3n) {
      border-right: 0;
    }

    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(3n)) .room-features-modal__item:nth-last-child(-n + 3),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(3n + 1)) .room-features-modal__item:nth-last-child(-n + 1),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(3n + 2)) .room-features-modal__item:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .room-location {
      gap: 24px;
      grid-template-areas: "copy visual";
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      margin: 64px auto 64px;
      padding: 0 24px;
    }

    .room-location--text-only {
      grid-template-areas: "copy";
      grid-template-columns: minmax(0, 1fr);
    }

    .room-location__copy {
      padding-top: 0;
    }

    .room-location--text-only .room-location__copy {
      max-width: none;
    }

    .room-location__text {
      max-width: none;
    }

    .room-location__list {
      gap: 12px 22px;
    }

    .room-location__label {
      font-size: 14px;
    }

    .room-location__time {
      font-size: 13px;
    }

    .room-location__visual {
      min-height: 360px;
    }

    .room-location__overlay {
      width: min(420px, calc(100% - 32px));
    }
  }

  @media (max-width: 640px) {
    .room-page {
      padding: 64px 18px 20px;
    }

    .room-page__back {
      margin-left: 0;
    }

    .room-page__copy,
    .room-page__hero-copy {
      padding: 0;
    }

    .room-page__copy h1,
    .room-page__hero-copy h1 {
      font-size: clamp(24px, 6vw, 30px);
      line-height: 1.15;
      max-width: none;
      margin-bottom: 0;
    }

    .room-page .room-page__location.home-listing__location {
      font-size: 15px;
    }

    .room-page .room-page__location.home-listing__location .home-listing__location-icon svg {
      height: 18px;
      width: 18px;
    }

    .room-page__description {
      font-size: 15px;
      line-height: 1.55;
    }

    .room-page__lead {
      font-size: 14px;
      line-height: 1.5;
      margin-top: 0;
    }

    .room-page__features {
      gap: 16px 24px;
    }

    .room-page__features ul {
      gap: 12px;
    }

    .room-page__features li {
      font-size: 15px;
      gap: 10px;
    }

    .room-page__visual {
      min-height: 0;
    }

    .room-page__visual-main {
      aspect-ratio: 16 / 9;
      min-height: 0;
    }

    .room-page__visual-main .room-gallery__item {
      flex: 0 0 clamp(68px, 24vw, 82px);
      aspect-ratio: 1280 / 853;
      height: auto;
    }

    .room-page__visual-main .room-gallery {
      margin: 0;
    }

    .room-gallery__track {
      gap: 8px;
      position: relative;
      grid-template-columns: 1fr;
    }

    .room-gallery__strip {
      gap: 8px;
      padding: 0 26px;
    }

    .room-gallery__item {
      flex-basis: clamp(68px, 24vw, 82px);
      aspect-ratio: 1280 / 853;
      height: auto;
    }

    .room-gallery__arrow {
      height: 44px;
      width: 44px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
    }

    .room-gallery__arrow--prev {
      left: 0;
    }

    .room-gallery__arrow--next {
      right: 0;
    }

    .room-page__zoom-button {
      height: 40px;
      right: 14px;
      top: 14px;
      width: 40px;
    }

    .room-page__zoom-button svg {
      height: 16px;
      width: 16px;
    }

    .room-about {
      margin: 64px auto 64px;
      padding: 0 18px;
    }

    .room-about__copy h2 {
      font-size: 22px;
      margin-bottom: 14px;
    }

    .room-about__copy p {
      font-size: 14px;
    }

    .room-about__panel {
      padding: 18px;
    }

    .room-about__details {
      gap: 12px;
    }

    .room-about__detail {
      gap: 10px;
      grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
    }

    .room-about__detail dt {
      white-space: nowrap;
      font-size: 13px;
    }

    .room-about__icon {
      width: 24px;
    }

    .room-about__icon svg {
      height: 24px;
      width: 24px;
    }

    .room-about__detail dd {
      font-size: 13px;
    }

    .room-features {
      margin: 64px auto 64px;
      padding: 0 18px;
    }

    .room-features__header h2 {
      font-size: 22px;
      margin-bottom: 14px;
    }

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

    .room-features__card {
      min-height: 72px;
      padding: 14px 14px;
      border-right: 1px solid rgba(20, 17, 80, 0.08);
      border-bottom: 1px solid rgba(20, 17, 80, 0.08);
    }

    .room-features__card:nth-child(3n) {
      border-right: 1px solid rgba(20, 17, 80, 0.08);
    }

    .room-features__card:nth-child(4n) {
      border-right: 1px solid rgba(20, 17, 80, 0.08);
    }

    .room-features__card:nth-child(2n) {
      border-right: 0;
    }

    .room-features__card:last-child:nth-child(odd) {
      border-right: 0;
      grid-column: 1 / -1;
    }

    .room-features__grid:has(.room-features__card:last-child:nth-child(odd)) .room-features__card:nth-last-child(-n + 3),
    .room-features__grid:has(.room-features__card:last-child:nth-child(even)) .room-features__card:nth-last-child(-n + 4) {
      border-bottom: 1px solid rgba(20, 17, 80, 0.08);
    }

    .room-features__grid:has(.room-features__card:last-child:nth-child(odd)) .room-features__card:last-child,
    .room-features__grid:has(.room-features__card:last-child:nth-child(even)) .room-features__card:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .room-features__card span:last-child {
      font-size: 13px;
    }

    .room-features__icon {
      width: 36px;
    }

    .room-features__icon svg {
      height: 36px;
      width: 36px;
    }

    .room-features__footer {
      margin-top: 18px;
    }

    .room-location {
      gap: 24px;
      grid-template-areas: "copy" "visual";
      grid-template-columns: 1fr;
      margin: 64px auto 64px;
      padding: 0 18px;
    }

    .room-location__copy,
    .room-location__visual {
      min-width: 0;
      width: 100%;
    }

    .room-location__copy h2 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .room-location__text {
      font-size: 14px;
      margin-bottom: 14px;
      max-width: none;
    }

    .room-location__list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 14px;
      min-width: 0;
    }

    .room-location__list li {
      min-width: 0;
      gap: 6px 8px;
      width: 100%;
      grid-template-columns: 18px minmax(0, 1fr);
    }

    .room-location__label,
    .room-location__time {
      min-width: 0;
      overflow-wrap: break-word;
    }

    .room-location__time {
      margin-top: -2px;
      white-space: normal;
    }

    .room-location__label {
      font-size: 14px;
    }

    .room-location__time {
      font-size: 13px;
    }

    .room-location__visual {
      min-height: 260px;
    }

    .room-location__overlay {
      bottom: 12px;
      gap: 10px;
      grid-template-columns: 20px minmax(0, 1fr);
      left: 12px;
      max-width: 100%;
      padding: 12px 12px 10px;
      transform: none;
      width: calc(100% - 24px);
    }

    .room-location__overlay-copy {
      min-width: 0;
    }

    .room-location__overlay-copy strong {
      font-size: 14px;
      line-height: 1.2;
    }

    .room-location__overlay-copy span {
      font-size: 12px;
    }

    .room-location__map-button {
      grid-column: 1 / -1;
      min-height: 40px;
      width: 100%;
    }

    .room-cta {
      margin: 64px auto 64px;
      padding: 0 18px;
    }

    .room-cta__card {
      border-radius: 20px;
      gap: 14px;
      grid-template-columns: 1fr;
      padding: 24px 18px;
    }

    .room-cta__actions {
      flex-direction: column;
      justify-self: stretch;
      width: 100%;
    }

    .room-cta__copy h2 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .room-cta__copy p {
      font-size: 15px;
      max-width: none;
    }

    .room-cta__button {
      font-size: 16px;
      min-height: 52px;
      min-width: 0;
      width: 100%;
    }

    .room-features__grid {
      background: #ffffff;
    }

    .room-features__card,
    .room-features__placeholder {
      background: #ffffff;
    }

    .room-features-modal {
      padding: 12px;
    }

    .room-features-modal__dialog {
      max-height: calc(100vh - 24px);
      padding: 20px 18px;
    }

    .room-features-modal__grid {
      background: #ffffff;
    }

    .room-features-modal__item,
    .room-features-modal__placeholder {
      background: #ffffff;
    }

    .room-features-modal__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      position: relative;
    }

    .room-features-modal__item {
      min-height: 60px;
      padding: 14px 16px;
      border-right: 1px solid rgba(20, 17, 80, 0.14);
      border-bottom: 1px solid rgba(20, 17, 80, 0.14);
    }

    .room-features-modal__item:nth-child(4n) {
      border-right: 1px solid rgba(20, 17, 80, 0.14);
    }

    .room-features-modal__item:nth-child(2n) {
      border-right: 0;
    }

    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(odd)) .room-features-modal__item:nth-last-child(-n + 3),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(even)) .room-features-modal__item:nth-last-child(-n + 4) {
      border-bottom: 1px solid rgba(20, 17, 80, 0.14);
    }

    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(odd)) .room-features-modal__item:last-child,
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(even)) .room-features-modal__item:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .room-features-modal__item:last-child:nth-child(odd) {
      border-bottom: 0;
      border-right: 0;
      grid-column: 1 / -1;
    }

    .room-lightbox {
      padding: 12px;
    }

    .room-lightbox__dialog {
      grid-template-columns: 1fr;
    }

    .room-lightbox__nav {
      height: 44px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      z-index: 2;
    }

    .room-lightbox__nav--prev {
      left: 10px;
    }

    .room-lightbox__nav--next {
      right: 10px;
    }
  }

  .room-features__grid,
  .room-features-modal__grid {
    gap: 0;
    padding: 0;
  }

  .room-features__grid {
    background: #ffffff;
    border: 1px solid rgba(20, 17, 80, 0.1);
  }

  .room-features-modal__grid {
    background: #ffffff;
    border: 1px solid rgba(20, 17, 80, 0.1);
  }

  .room-features__card,
  .room-features__placeholder,
  .room-features-modal__item,
  .room-features-modal__placeholder {
    border: 0;
  }

  .room-features__card,
  .room-features__placeholder {
    background: #ffffff;
  }

  .room-features-modal__item,
  .room-features-modal__placeholder {
    background: #ffffff;
  }

  .room-features__placeholder,
  .room-features-modal__placeholder {
    display: block;
    min-height: 84px;
  }

  .room-features-modal__placeholder {
    min-height: 80px;
  }

  @media (max-width: 980px) {
    .room-features__grid,
    .room-features-modal__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .room-features__grid,
    .room-features-modal__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      padding: 0;
      background: #ffffff;
      border: 1px solid rgba(20, 17, 80, 0.1);
      border-radius: 24px;
      overflow: hidden;
    }

    .room-features__card,
    .room-features__placeholder {
      background: #ffffff;
      border-bottom: 1px solid rgba(20, 17, 80, 0.08);
      border-right: 1px solid rgba(20, 17, 80, 0.08);
      border-radius: 0;
      box-shadow: none;
      min-height: 64px;
      padding: 14px 16px;
    }

    .room-features-modal__item,
    .room-features-modal__placeholder {
      background: #ffffff;
      border-bottom: 1px solid rgba(20, 17, 80, 0.08);
      border-right: 1px solid rgba(20, 17, 80, 0.08);
      border-radius: 0;
      box-shadow: none;
      min-height: 64px;
      padding: 14px 16px;
    }

    .room-features__card:nth-child(2n),
    .room-features__placeholder:nth-child(2n),
    .room-features-modal__item:nth-child(2n),
    .room-features-modal__placeholder:nth-child(2n) {
      border-right: 0;
    }

    .room-features__grid:has(.room-features__card:last-child:nth-child(2n)) .room-features__card:nth-last-child(-n + 2),
    .room-features__grid:has(.room-features__card:last-child:nth-child(2n + 1)) .room-features__card:nth-last-child(-n + 1),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(2n)) .room-features__placeholder:nth-last-child(-n + 2),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(2n + 1)) .room-features__placeholder:nth-last-child(-n + 1),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(2n)) .room-features-modal__item:nth-last-child(-n + 2),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(2n + 1)) .room-features-modal__item:nth-last-child(-n + 1),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(2n)) .room-features-modal__placeholder:nth-last-child(-n + 2),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(2n + 1)) .room-features-modal__placeholder:nth-last-child(-n + 1) {
      border-bottom: 0;
    }
  }

  @media (min-width: 641px) and (max-width: 980px) {
    .room-features__grid,
    .room-features-modal__grid {
      gap: 0;
      padding: 0;
      background: #ffffff;
      border: 1px solid rgba(20, 17, 80, 0.1);
      border-radius: 24px;
      overflow: hidden;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .room-features__card,
    .room-features__placeholder,
    .room-features-modal__item,
    .room-features-modal__placeholder {
      background: #ffffff;
      border-bottom: 1px solid rgba(20, 17, 80, 0.08);
      border-right: 1px solid rgba(20, 17, 80, 0.08);
      box-shadow: none;
      min-height: 80px;
      padding: 18px 20px;
    }

    .room-features__card:nth-child(3n),
    .room-features__placeholder:nth-child(3n),
    .room-features-modal__item:nth-child(3n),
    .room-features-modal__placeholder:nth-child(3n) {
      border-right: 0;
    }

    .room-features__grid:has(.room-features__card:last-child:nth-child(3n)) .room-features__card:nth-last-child(-n + 3),
    .room-features__grid:has(.room-features__card:last-child:nth-child(3n + 1)) .room-features__card:nth-last-child(-n + 1),
    .room-features__grid:has(.room-features__card:last-child:nth-child(3n + 2)) .room-features__card:nth-last-child(-n + 2),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(3n)) .room-features__placeholder:nth-last-child(-n + 3),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(3n + 1)) .room-features__placeholder:nth-last-child(-n + 1),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(3n + 2)) .room-features__placeholder:nth-last-child(-n + 2),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(3n)) .room-features-modal__item:nth-last-child(-n + 3),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(3n + 1)) .room-features-modal__item:nth-last-child(-n + 1),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(3n + 2)) .room-features-modal__item:nth-last-child(-n + 2),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(3n)) .room-features-modal__placeholder:nth-last-child(-n + 3),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(3n + 1)) .room-features-modal__placeholder:nth-last-child(-n + 1),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(3n + 2)) .room-features-modal__placeholder:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .room-features-modal__item,
    .room-features-modal__placeholder {
      min-height: 80px;
    }
  }

  @media (min-width: 641px) and (max-width: 980px) {
    .room-features__grid,
    .room-features-modal__grid {
      gap: 1px;
      padding: 1px;
      background: rgba(20, 17, 80, 0.08);
      border: 0;
      border-radius: 24px;
      overflow: hidden;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .room-features__card,
    .room-features__placeholder,
    .room-features-modal__item,
    .room-features-modal__placeholder {
      background: #ffffff;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      min-height: 80px;
      padding: 18px 20px;
    }

    .room-features-modal__placeholder {
      min-height: 80px;
    }
  }

  @media (max-width: 640px) {
    .room-features__grid,
    .room-features-modal__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      padding: 1px;
      background: rgba(20, 17, 80, 0.08);
      border: 0;
      border-radius: 24px;
      overflow: hidden;
    }

    .room-features__card,
    .room-features__placeholder,
    .room-features-modal__item,
    .room-features-modal__placeholder {
      background: #ffffff;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      min-height: 64px;
      padding: 14px 16px;
    }
  }

  /* Uploaded/pasted home feature SVGs must render independently from built-in stroke icons. */
  .room-features__icon .quickstay-icon-raw,
  .room-page__feature-icon .quickstay-icon-raw {
    color: var(--color-ink);
    height: 36px;
    width: 36px;
  }

  .room-features__icon .quickstay-icon-raw svg,
  .room-page__feature-icon .quickstay-icon-raw svg {
    display: block;
    fill: currentColor;
    height: 36px;
    stroke: currentColor;
    width: 36px;
  }

  .room-features__icon .quickstay-icon-raw svg [fill="none"],
  .room-page__feature-icon .quickstay-icon-raw svg [fill="none"] {
    fill: none;
  }

  .room-features__icon .quickstay-icon-raw svg [stroke="none"],
  .room-page__feature-icon .quickstay-icon-raw svg [stroke="none"] {
    stroke: none;
  }

  /* Final feature grid override: keep separators consistent across breakpoints. */
  .room-features__grid,
  .room-features-modal__grid {
    gap: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 24px;
    overflow: hidden;
  }

  .room-features__card,
  .room-features__placeholder,
  .room-features-modal__item,
  .room-features-modal__placeholder {
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
  }

  .room-features__card,
  .room-features__placeholder {
    border-right: 1px solid rgba(20, 17, 80, 0.08);
    border-bottom: 1px solid rgba(20, 17, 80, 0.08);
    min-height: 84px;
    padding: 18px 20px;
  }

  .room-features-modal__item,
  .room-features-modal__placeholder {
    border-right: 1px solid rgba(20, 17, 80, 0.08);
    border-bottom: 1px solid rgba(20, 17, 80, 0.08);
    min-height: 80px;
    padding: 18px 20px;
  }

  .room-features__card:nth-child(4n),
  .room-features__placeholder:nth-child(4n),
  .room-features-modal__item:nth-child(4n),
  .room-features-modal__placeholder:nth-child(4n) {
    border-right: 0;
  }

  .room-features__grid:has(.room-features__card:last-child:nth-child(4n)) .room-features__card:nth-last-child(-n + 4),
  .room-features__grid:has(.room-features__card:last-child:nth-child(4n + 1)) .room-features__card:nth-last-child(-n + 1),
  .room-features__grid:has(.room-features__card:last-child:nth-child(4n + 2)) .room-features__card:nth-last-child(-n + 2),
  .room-features__grid:has(.room-features__card:last-child:nth-child(4n + 3)) .room-features__card:nth-last-child(-n + 3),
  .room-features__grid:has(.room-features__placeholder:last-child:nth-child(4n)) .room-features__placeholder:nth-last-child(-n + 4),
  .room-features__grid:has(.room-features__placeholder:last-child:nth-child(4n + 1)) .room-features__placeholder:nth-last-child(-n + 1),
  .room-features__grid:has(.room-features__placeholder:last-child:nth-child(4n + 2)) .room-features__placeholder:nth-last-child(-n + 2),
  .room-features__grid:has(.room-features__placeholder:last-child:nth-child(4n + 3)) .room-features__placeholder:nth-last-child(-n + 3),
  .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(4n)) .room-features-modal__item:nth-last-child(-n + 4),
  .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(4n + 1)) .room-features-modal__item:nth-last-child(-n + 1),
  .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(4n + 2)) .room-features-modal__item:nth-last-child(-n + 2),
  .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(4n + 3)) .room-features-modal__item:nth-last-child(-n + 3),
  .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(4n)) .room-features-modal__placeholder:nth-last-child(-n + 4),
  .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(4n + 1)) .room-features-modal__placeholder:nth-last-child(-n + 1),
  .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(4n + 2)) .room-features-modal__placeholder:nth-last-child(-n + 2),
  .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(4n + 3)) .room-features-modal__placeholder:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  @media (max-width: 980px) {
    .room-features__grid,
    .room-features-modal__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .room-features__card:nth-child(3n),
    .room-features__placeholder:nth-child(3n),
    .room-features-modal__item:nth-child(3n),
    .room-features-modal__placeholder:nth-child(3n) {
      border-right: 0;
    }

    .room-features__grid:has(.room-features__card:last-child:nth-child(3n)) .room-features__card:nth-last-child(-n + 3),
    .room-features__grid:has(.room-features__card:last-child:nth-child(3n + 1)) .room-features__card:nth-last-child(-n + 1),
    .room-features__grid:has(.room-features__card:last-child:nth-child(3n + 2)) .room-features__card:nth-last-child(-n + 2),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(3n)) .room-features__placeholder:nth-last-child(-n + 3),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(3n + 1)) .room-features__placeholder:nth-last-child(-n + 1),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(3n + 2)) .room-features__placeholder:nth-last-child(-n + 2),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(3n)) .room-features-modal__item:nth-last-child(-n + 3),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(3n + 1)) .room-features-modal__item:nth-last-child(-n + 1),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(3n + 2)) .room-features-modal__item:nth-last-child(-n + 2),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(3n)) .room-features-modal__placeholder:nth-last-child(-n + 3),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(3n + 1)) .room-features-modal__placeholder:nth-last-child(-n + 1),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(3n + 2)) .room-features-modal__placeholder:nth-last-child(-n + 2) {
      border-bottom: 0;
    }
  }

  @media (max-width: 640px) {
    .room-features__grid,
    .room-features-modal__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .room-features__card,
    .room-features__placeholder,
    .room-features-modal__item,
    .room-features-modal__placeholder {
      min-height: 64px;
      padding: 14px 16px;
    }

    .room-features__card:nth-child(2n),
    .room-features__placeholder:nth-child(2n),
    .room-features-modal__item:nth-child(2n),
    .room-features-modal__placeholder:nth-child(2n) {
      border-right: 0;
    }

    .room-features__grid:has(.room-features__card:last-child:nth-child(2n)) .room-features__card:nth-last-child(-n + 2),
    .room-features__grid:has(.room-features__card:last-child:nth-child(2n + 1)) .room-features__card:nth-last-child(-n + 1),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(2n)) .room-features__placeholder:nth-last-child(-n + 2),
    .room-features__grid:has(.room-features__placeholder:last-child:nth-child(2n + 1)) .room-features__placeholder:nth-last-child(-n + 1),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(2n)) .room-features-modal__item:nth-last-child(-n + 2),
    .room-features-modal__grid:has(.room-features-modal__item:last-child:nth-child(2n + 1)) .room-features-modal__item:nth-last-child(-n + 1),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(2n)) .room-features-modal__placeholder:nth-last-child(-n + 2),
    .room-features-modal__grid:has(.room-features-modal__placeholder:last-child:nth-child(2n + 1)) .room-features-modal__placeholder:nth-last-child(-n + 1) {
      border-bottom: 0;
    }
  }

  @media (max-width: 980px) {
    .room-page__visual-main {
      aspect-ratio: auto;
      box-shadow: none;
      display: grid;
      gap: 12px;
      overflow: visible;
    }

    .room-page__visual-image {
      aspect-ratio: 16 / 9;
      border-radius: 20px;
      box-shadow: 0 22px 50px rgba(20, 17, 80, 0.16);
      height: auto;
      inset: auto;
      position: relative;
      width: 100%;
    }

    .room-page__visual-main .room-gallery {
      bottom: auto;
      left: auto;
      opacity: 1;
      margin: 0;
      position: static;
      right: auto;
    }

    .room-page__visual-main .room-gallery__track {
      grid-template-columns: auto minmax(0, 1fr) auto;
      position: static;
    }

    .room-page__visual-main .room-gallery__arrow {
      position: static;
      transform: none;
    }

    .room-page__visual-main .room-gallery__item {
      flex: 0 0 clamp(68px, 18vw, 92px);
    }
  }

  @media (max-width: 768px) {
    .room-location__list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 14px;
      min-width: 0;
    }

    .room-location__list li {
      align-items: start;
      gap: 5px 8px;
      grid-template-columns: 18px minmax(0, 1fr);
      min-width: 0;
      width: 100%;
    }

    .room-location__label,
    .room-location__time {
      min-width: 0;
    }

    .room-location__time {
      margin-top: -2px;
      white-space: normal;
    }
  }

  @media (max-width: 420px) {
    .room-location__list {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .room-location__overlay {
      left: 10px;
      max-width: none;
      width: calc(100% - 20px);
    }

    .room-location__list li {
      grid-template-columns: 16px minmax(0, 1fr);
    }

    .room-location__overlay-copy strong,
    .room-location__overlay-copy span {
      font-size: 12px;
    }
  }

  @media (min-width: 641px) and (max-width: 980px) {
    .room-cta {
      margin: 64px auto;
      padding: 0 24px;
    }

    .room-cta__card {
      padding: 30px 32px;
    }

    .room-cta__actions {
      align-items: stretch;
    }

    .room-cta__copy h2 {
      font-size: 28px;
    }

    .room-cta__copy p {
      font-size: 16px;
    }

    .room-cta__button {
      font-size: 16px;
      min-height: 54px;
      min-width: 170px;
    }
  }

  /* ----- Contact & legal layout (shared body) ----- */
  body.legal-view,
  body.contact-view,
  body.faq-view,
  body.services-view,
  body.service-detail-view,
  body.about-view,
  body.error-404-view {
    background: linear-gradient(180deg, #ffffff 0%, #f5f6fa 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
    overflow-x: clip;
  }

  body.legal-view main,
  body.contact-view main,
  body.faq-view main,
  body.services-view main,
  body.service-detail-view main,
  body.about-view main,
  body.error-404-view main {
    flex: 1 0 auto;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  body.legal-view .site-footer,
  body.contact-view .site-footer,
  body.faq-view .site-footer,
  body.services-view .site-footer,
  body.service-detail-view .site-footer,
  body.about-view .site-footer,
  body.error-404-view .site-footer {
    margin-top: auto;
  }

  .error-404-page {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    padding: var(--page-gutter) var(--page-gutter) 96px;
    width: 100%;
  }

  .error-404-page__intro {
    margin: 0;
    max-width: 40rem;
  }

  .error-404-page__code {
    color: var(--color-accent);
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0 0 12px;
  }

  .error-404-page__intro h1 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.12;
    margin: 0 0 12px;
  }

  .error-404-page__lead {
    color: rgba(20, 17, 80, 0.62);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0 0 28px;
    max-width: 36ch;
  }

  .error-404-page__home {
    align-items: center;
    background: var(--color-accent);
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px 0 24px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
  }

  .error-404-page__home img {
    filter: brightness(0) invert(1);
    height: 12px;
    width: 14px;
  }

  .error-404-page__home:hover,
  .error-404-page__home:focus-visible {
    background: #ff4d4d;
    transform: translateY(-1px);
  }

  .error-404-page__home:focus-visible {
    outline: 2px solid rgba(20, 17, 80, 0.35);
    outline-offset: 3px;
  }

  .contact-page {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    padding: 64px var(--page-gutter) 88px;
    width: 100%;
  }

  .contact-page__intro {
    margin-bottom: 24px;
  }

  .contact-page__intro h1 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
  }

  .contact-page__layout {
    align-items: start;
    display: grid;
    gap: 32px 48px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    margin-bottom: 40px;
  }

  .contact-page__commitment {
    margin-top: 40px;
  }

  .contact-page__commitment .services-commitment {
    margin-top: 0;
  }

  .contact-page__info {
    display: grid;
    gap: 0;
    min-width: 0;
  }

  .contact-page__info-row {
    border-bottom: 1px solid rgba(20, 17, 80, 0.1);
    display: grid;
    gap: 16px 18px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 20px 0;
  }

  .contact-page__info-row--last {
    border-bottom: 0;
  }

  .contact-page__info-icon {
    align-items: center;
    align-self: start;
    background: rgba(20, 17, 80, 0.06);
    border-radius: 999px;
    color: var(--color-ink);
    display: inline-flex;
    height: 48px;
    justify-content: center;
    margin-top: 2px;
    width: 48px;
  }

  .contact-page__info-icon svg {
    height: 22px;
    width: 22px;
  }

  .contact-page__info-icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
  }

  .contact-page__info-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .contact-page__info-label {
    color: rgba(20, 17, 80, 0.55);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .contact-page__info-copy a,
  .contact-page__info-copy > span:not(.contact-page__info-label) {
    color: var(--color-ink);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
  }

  .contact-page__info-copy a:hover,
  .contact-page__info-copy a:focus-visible {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .contact-page__form-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(148, 148, 148, 0.16);
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 26px 26px;
  }

  .contact-page__form-card:has(.contact-page__form--compact) {
    gap: 14px;
    padding: 24px 22px 22px;
  }

  .contact-page__form {
    display: grid;
    gap: 18px;
  }

  .contact-page__form--compact {
    gap: 14px;
  }

  .contact-page__form-band {
    background: rgba(20, 17, 80, 0.035);
    border: 1px solid rgba(20, 17, 80, 0.09);
    border-radius: 16px;
    display: grid;
    gap: 12px;
    padding: 14px 16px 16px;
  }

  .contact-page__form-band-label {
    color: rgba(20, 17, 80, 0.52);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .contact-page__form-grid2--tight {
    gap: 12px 14px;
  }

  .contact-page__form--compact .contact-page__field label {
    font-size: 12px;
    letter-spacing: 0.01em;
  }

  .contact-page__form--compact .contact-page__field input,
  .contact-page__form--compact .contact-page__field select {
    font-size: 14px;
    min-height: 44px;
    padding: 0 12px;
  }

  .contact-page__form--compact .contact-page__field textarea {
    min-height: 104px;
    padding: 10px 12px;
  }

  .contact-page__form--compact .contact-page__submit {
    height: 48px;
    font-size: 15px;
    margin-top: 2px;
  }

  .contact-page__form-hp {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .contact-page__form-notice {
    border-radius: 12px;
    font-size: 0.9375rem;
    margin: 0;
    padding: 0.75rem 1rem;
  }

  .contact-page__form-notice--ok {
    background: #ecfdf3;
    color: #065f46;
  }

  .contact-page__form-notice--fail {
    background: #fef2f2;
    color: #991b1b;
  }

  .contact-page__form-grid2 {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page__field {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .contact-page__field label {
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 600;
  }

  .contact-page__field input,
  .contact-page__field select,
  .contact-page__field textarea {
    background: #ffffff;
    border: 1px solid rgba(20, 17, 80, 0.14);
    border-radius: 12px;
    box-sizing: border-box;
    color: var(--color-ink);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    min-height: 48px;
    padding: 0 14px;
    width: 100%;
  }

  .contact-page__field textarea {
    line-height: 1.45;
    min-height: 140px;
    padding: 12px 14px;
    resize: vertical;
  }

  .contact-page__field input::placeholder,
  .contact-page__field textarea::placeholder {
    color: rgba(20, 17, 80, 0.38);
    font-weight: 400;
  }

  .contact-page__field input:focus-visible,
  .contact-page__field select:focus-visible,
  .contact-page__field textarea:focus-visible {
    border-color: rgba(20, 17, 80, 0.35);
    outline: 2px solid rgba(20, 17, 80, 0.12);
    outline-offset: 1px;
  }

  .contact-page__submit {
    align-items: center;
    background: var(--color-ink);
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    height: 52px;
    justify-content: center;
    margin-top: 4px;
    padding: 0 20px;
    transition: background-color 160ms ease, transform 160ms ease;
    width: 100%;
  }

  .contact-page__submit img {
    filter: brightness(0) invert(1);
    height: 11px;
    width: 14px;
  }

  .contact-page__submit:hover,
  .contact-page__submit:focus-visible {
    background: #201b78;
    transform: translateY(-1px);
  }

  .contact-page__map {
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(148, 148, 148, 0.14);
    min-height: 320px;
    overflow: hidden;
  }

  .contact-page__map-frame {
    border: 0;
    display: block;
    height: 400px;
    width: 100%;
  }

  @media (max-width: 980px) {
    .contact-page {
      padding: 64px 24px 80px;
    }

    .error-404-page {
      padding: 28px 24px 80px;
    }

    .contact-page__layout {
      gap: 28px;
      grid-template-columns: 1fr;
    }

    .contact-page__form-card {
      padding: 24px 22px 22px;
    }
  }

  @media (max-width: 640px) {
    .contact-page {
      padding: 64px 18px 72px;
    }

    .error-404-page {
      padding: 22px 18px 72px;
    }

    .contact-page__intro h1 {
      font-size: 28px;
    }

    .error-404-page__intro h1 {
      font-size: 28px;
    }

    .all-homes-page__intro p,
    .services-page__intro p,
    .about-page__intro p,
    .faq-page__intro p,
    .contact-page__intro p {
      font-size: 15px;
    }

    .error-404-page__lead {
      font-size: 15px;
    }

    .contact-page__form-grid2 {
      grid-template-columns: 1fr;
    }

    .contact-page__map-frame {
      height: 280px;
    }

    body.legal-view,
    body.contact-view,
    body.faq-view,
    body.services-view,
    body.service-detail-view,
    body.about-view,
    body.error-404-view {
      background: linear-gradient(180deg, #ffffff 0%, #f5f6fa 100%);
    }
  }

  /* ----- Shared inner-page hero intro (aligned copy + color) ----- */
  .all-homes-page__intro p,
  .services-page__intro p,
  .about-page__intro p,
  .faq-page__intro p,
  .contact-page__intro p {
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    margin: 8px 0 0;
    max-width: min(36rem, 100%);
  }

  /* ----- FAQ page ----- */
  .faq-page {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    padding: 64px var(--page-gutter);
    width: 100%;
  }

  .faq-page__intro {
    margin-bottom: 24px;
  }

  .faq-page__intro h1 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
  }

  .faq-page__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(20, 17, 80, 0.04);
    overflow: hidden;
  }

  .faq-item__summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    list-style: none;
    padding: 18px 20px;
  }

  .faq-item__summary::-webkit-details-marker {
    display: none;
  }

  .faq-item__question {
    color: var(--color-ink);
    flex: 1 1 auto;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    min-width: 0;
    text-align: left;
  }

  .faq-item__toggle {
    color: var(--color-ink);
    flex: 0 0 auto;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    opacity: 0.75;
    width: 1.25rem;
  }

  .faq-item__toggle::before {
    content: "+";
    display: block;
    text-align: center;
  }

  details[open] > .faq-item__summary .faq-item__toggle::before {
    content: "\2212";
  }

  .faq-item__answer {
    border-top: 1px solid rgba(20, 17, 80, 0.08);
    padding: 12px 20px 18px;
  }

  .faq-item__answer p {
    color: rgba(20, 17, 80, 0.68);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
  }

  .faq-item__answer p + p {
    margin-top: 12px;
  }

  .faq-item__summary:focus-visible {
    outline: 2px solid rgba(20, 17, 80, 0.25);
    outline-offset: -2px;
  }

  .faq-page__cta {
    margin-top: 64px;
  }

  @media (max-width: 980px) {
    .faq-page {
      max-width: none;
      padding: 64px 24px;
    }
  }

  @media (max-width: 640px) {
    .faq-page {
      padding: 64px 18px;
    }

    .faq-page__intro h1 {
      font-size: 28px;
    }

    .faq-item__summary {
      padding: 16px 16px;
    }

    .faq-item__question {
      font-size: 15px;
    }

    .faq-item__answer {
      padding: 10px 16px 16px;
    }

    .faq-item__answer p {
      font-size: 14px;
    }
  }

  /* ----- Legal pages (Terms & Privacy) ----- */

  .legal-page {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    overflow-x: clip;
    padding: var(--page-gutter) var(--page-gutter) 96px;
    width: 100%;
  }

  .service-detail-breadcrumb,
  .legal-page__breadcrumb,
  .quickstay-breadcrumb {
    color: rgba(20, 17, 80, 0.5);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 500;
    gap: 6px 10px;
    justify-content: flex-start;
    line-height: 1.45;
    margin: 0 0 20px;
    min-height: calc(1.45em + 4px);
    padding-top: 2px;
    text-align: left;
  }

  .service-detail-breadcrumb a,
  .legal-page__breadcrumb a,
  .quickstay-breadcrumb a {
    color: rgba(20, 17, 80, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .service-detail-breadcrumb a:hover,
  .service-detail-breadcrumb a:focus-visible,
  .legal-page__breadcrumb a:hover,
  .legal-page__breadcrumb a:focus-visible,
  .quickstay-breadcrumb a:hover,
  .quickstay-breadcrumb a:focus-visible {
    color: var(--color-accent);
  }

  .service-detail-breadcrumb [aria-current="page"],
  .legal-page__breadcrumb [aria-current="page"],
  .quickstay-breadcrumb [aria-current="page"] {
    color: rgba(20, 17, 80, 0.75);
    font-weight: 600;
  }

  .legal-page__intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .legal-page__intro h1 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
  }

  .legal-page__lead {
    color: rgba(20, 17, 80, 0.62);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    margin: 10px 0 0;
    max-width: 48ch;
  }

  .legal-page__updated {
    align-items: center;
    color: rgba(20, 17, 80, 0.62);
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    gap: 10px;
    margin: 18px 0 0;
  }

  .legal-page__updated-icon {
    align-items: center;
    color: var(--color-ink);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
  }

  .legal-page__updated-icon svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    width: 20px;
  }

  .legal-page__pillars {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
  }

  .legal-page__pillar {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(20, 17, 80, 0.04);
    display: flex;
    gap: 14px;
    padding: 18px 18px 20px;
  }

  .legal-page__pillar-icon {
    align-items: center;
    background: rgba(20, 17, 80, 0.06);
    border-radius: 12px;
    color: var(--color-ink);
    display: inline-flex;
    flex: 0 0 auto;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .legal-page__pillar-icon svg {
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 22px;
  }

  .legal-page__pillar-copy h2 {
    color: var(--color-ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
  }

  .legal-page__pillar-copy p {
    color: rgba(20, 17, 80, 0.68);
    font-size: 15px;
    line-height: 1.5;
    margin: 6px 0 0;
  }

  .legal-page__layout {
    display: grid;
    gap: 32px 40px;
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    margin-top: 8px;
  }

  .legal-page__sidebar {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .legal-page__content {
    margin-left: 0;
    margin-right: auto;
    max-width: 720px;
    min-width: 0;
  }

  .legal-page__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .legal-page__nav-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(20, 17, 80, 0.04);
    color: var(--color-ink);
    column-gap: 10px;
    display: grid;
    font-size: 15px;
    font-weight: 500;
    grid-template-columns: 40px minmax(0, 1fr) 28px;
    line-height: 1.25;
    padding: 10px 12px 10px 10px;
    text-align: left;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .legal-page__nav-link:hover,
  .legal-page__nav-link:focus-visible {
    border-color: rgba(20, 17, 80, 0.2);
  }

  .legal-page__nav-link.is-active,
  .legal-page__nav-link[aria-current="page"] {
    background: rgba(20, 17, 80, 0.06);
    border-color: rgba(20, 17, 80, 0.16);
  }

  .legal-page__nav-link.is-active .legal-page__nav-label,
  .legal-page__nav-link[aria-current="page"] .legal-page__nav-label {
    font-weight: 600;
  }

  .legal-page__nav-icon {
    align-items: center;
    color: var(--color-ink);
    display: flex;
    height: 36px;
    justify-content: center;
    justify-self: center;
    opacity: 0.88;
    width: 40px;
  }

  .legal-page__nav-icon svg {
    display: block;
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 20px;
  }

  .legal-page__nav-label {
    font-weight: 500;
    min-width: 0;
  }

  .legal-page__nav-chevron {
    align-items: center;
    align-self: center;
    color: rgba(20, 17, 80, 0.45);
    display: flex;
    height: 36px;
    justify-content: center;
    justify-self: end;
    width: 100%;
  }

  .legal-page__nav-chevron svg {
    display: block;
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 18px;
  }

  .legal-page__back {
    align-items: center;
    box-sizing: border-box;
    color: rgba(20, 17, 80, 0.55);
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
    justify-content: flex-start;
    line-height: 1.3;
    margin: 0 0 8px;
    padding: 6px 0;
    text-align: left;
    text-decoration: none;
    transition: color 0.2s ease;
    width: 100%;
  }

  .legal-page__back:hover,
  .legal-page__back:focus-visible {
    color: rgba(20, 17, 80, 0.78);
  }

  .legal-page__back:focus-visible {
    outline: 2px solid rgba(20, 17, 80, 0.22);
    outline-offset: 2px;
  }

  .legal-page__back-slot {
    align-items: center;
    display: flex;
    flex: 0 0 18px;
    height: 36px;
    justify-content: flex-start;
    width: 18px;
  }

  .legal-page__back-slot svg {
    fill: none;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
    width: 16px;
  }

  .legal-page__back-text {
    min-width: 0;
  }

  .legal-page__sections {
    counter-reset: legal-section;
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .legal-page__section {
    counter-increment: legal-section;
  }

  .legal-page__section-heading {
    color: var(--color-ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 8px;
    padding-left: 0;
  }

  .legal-page__section-heading::before {
    content: counter(legal-section) ". ";
    color: rgba(20, 17, 80, 0.45);
    font-weight: 700;
  }

  .legal-page__section p {
    color: rgba(20, 17, 80, 0.68);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    max-width: 72ch;
  }

  .legal-page__contact-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(20, 17, 80, 0.04);
    margin-top: 32px;
    padding: 22px 22px 24px;
  }

  .legal-page__contact-panel-title {
    color: var(--color-ink);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
  }

  .legal-page__contact-panel-inner {
    display: grid;
    gap: 20px 32px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .legal-page__contact-panel-lead {
    color: rgba(20, 17, 80, 0.62);
    font-size: 17px;
    line-height: 1.45;
    margin: 0;
    max-width: 40ch;
  }

  .legal-page__contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .legal-page__contact-list li {
    display: flex;
    gap: 12px;
  }

  .legal-page__contact-list-icon {
    align-items: center;
    color: var(--color-ink);
    display: inline-flex;
    flex: 0 0 auto;
    height: 40px;
    justify-content: center;
    margin-top: 2px;
    width: 40px;
  }

  .legal-page__contact-list-icon svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 20px;
  }

  .legal-page__contact-list-label {
    color: rgba(20, 17, 80, 0.5);
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    text-transform: uppercase;
  }

  .legal-page__contact-list a {
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
  }

  .legal-page__contact-list a:hover,
  .legal-page__contact-list a:focus-visible {
    color: var(--color-accent);
  }

  .legal-page__contact-list span:not(.legal-page__contact-list-label) {
    color: rgba(20, 17, 80, 0.78);
    font-size: 15px;
    line-height: 1.45;
  }

  .legal-page__banner {
    background: linear-gradient(125deg, #0f154e 0%, #0a0a3c 55%, #1a1d72 100%);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(10, 10, 60, 0.28);
    color: #ffffff;
    margin-top: 48px;
    overflow: hidden;
    padding: 26px 28px;
  }

  .legal-page__banner-inner {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    justify-content: flex-start;
  }

  .legal-page__banner-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    height: 48px;
    justify-content: center;
    width: 48px;
  }

  .legal-page__banner-icon svg {
    fill: none;
    height: 24px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 24px;
  }

  .legal-page__banner-copy {
    flex: 1 1 220px;
    min-width: 0;
  }

  .legal-page__banner-copy h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
  }

  .legal-page__banner-copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.45;
    margin: 6px 0 0;
    max-width: 42ch;
  }

  .legal-page__banner-button {
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    color: var(--color-ink);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
    height: 50px;
    justify-content: flex-start;
    padding: 0 20px 0 22px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .legal-page__banner-button img {
    height: 12px;
    width: 16px;
  }

  .legal-page__banner-button:hover,
  .legal-page__banner-button:focus-visible {
    background: #f0f0ff;
    transform: translateY(-1px);
  }

  @media (max-width: 980px) {
    .legal-page {
      max-width: none;
      padding: 28px 24px 80px;
    }

    .legal-page__intro h1 {
      font-size: 28px;
    }

    .legal-page__pillars {
      grid-template-columns: 1fr;
    }

    .legal-page__layout {
      grid-template-columns: 1fr;
    }

    .legal-page__content {
      max-width: none;
      order: -1;
    }

    .legal-page__contact-panel-inner {
      grid-template-columns: 1fr;
    }

    .legal-page__banner-inner {
      align-items: flex-start;
      flex-direction: column;
    }

    .legal-page__banner-button {
      width: 100%;
      justify-content: flex-start;
    }
  }

  @media (max-width: 640px) {
    .legal-page {
      padding: 22px 18px 72px;
    }

    .legal-page__intro h1 {
      font-size: 28px;
    }

    .legal-page__lead {
      font-size: 15px;
    }

    .legal-page__pillar {
      padding: 16px;
    }

    .legal-page__banner {
      border-radius: 16px;
      margin-top: 36px;
      padding: 22px 18px;
    }

    .legal-page__banner-copy h2 {
      font-size: 18px;
    }
  }

  /* ----- Services page ----- */
  .services-page {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    overflow-x: clip;
    padding: 64px var(--page-gutter) 88px;
    width: 100%;
  }

  .services-page__intro {
    margin-bottom: 20px;
  }

  .services-page__intro h1 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
  }

  .services-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 48px;
  }

  .service-card {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(20, 17, 80, 0.06);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    scroll-margin-top: 96px;
  }

  .service-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    padding: 24px 22px 26px 24px;
  }

  .service-card__icon {
    align-items: center;
    align-self: flex-start;
    background: rgba(20, 17, 80, 0.06);
    border-radius: 12px;
    color: var(--color-ink);
    display: inline-flex;
    height: 68px;
    justify-content: center;
    width: 68px;
  }

  .service-card__icon svg {
    height: 44px;
    width: 44px;
  }

  .service-card__icon-img {
    display: block;
    height: 44px;
    object-fit: contain;
    width: 44px;
  }

  .service-card__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
  }

  .service-card__content h3 {
    color: var(--color-ink);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
  }

  .service-card__content > p {
    color: rgba(20, 17, 80, 0.7);
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
  }

  .service-card__link {
    align-items: center;
    color: var(--color-ink);
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    margin-top: 4px;
    text-decoration: none;
    width: fit-content;
  }

  .service-card__link img {
    height: 10px;
    width: 14px;
  }

  .service-card__link:hover,
  .service-card__link:focus-visible {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .service-card__media {
    min-height: 200px;
    position: relative;
  }

  .service-card__media img {
    display: block;
    height: 100%;
    left: 0;
    min-height: 220px;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .services-commitment {
    border-radius: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    margin-top: 8px;
    min-height: 420px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(10, 10, 60, 0.18);
  }

  .services-commitment__panel {
    background: linear-gradient(160deg, #0f154e 0%, #0a0a3c 45%, #1a1d72 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    padding: 40px 40px 44px;
  }

  .services-commitment__panel h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
  }

  .services-commitment__panel > p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 40ch;
    opacity: 0.94;
  }

  .services-commitment__list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
  }

  .services-commitment__list li {
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    gap: 12px;
    line-height: 1.35;
  }

  .services-commitment__check {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    height: 28px;
    justify-content: center;
    width: 28px;
  }

  .services-commitment__check svg {
    height: 14px;
    width: 14px;
  }

  .services-commitment__check svg path {
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
  }

  .services-commitment__button {
    align-items: center;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
    height: 50px;
    justify-content: center;
    margin-top: 8px;
    padding: 0 20px;
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease;
  }

  .services-commitment__button img {
    filter: brightness(0) invert(1);
    height: 10px;
    width: 14px;
  }

  .services-commitment__button:hover,
  .services-commitment__button:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
  }

  .services-commitment__media {
    min-height: 280px;
    position: relative;
  }

  .services-commitment__media img {
    display: block;
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
  }

  @media (max-width: 980px) {
    .services-page {
      padding: 64px 24px 80px;
    }

    .services-grid {
      gap: 18px;
      grid-template-columns: 1fr;
    }

    .service-card {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .services-commitment {
      grid-template-columns: 1fr;
      min-height: 0;
    }

    .services-commitment__panel {
      padding: 32px 28px 36px;
    }

    .services-commitment__media {
      min-height: 260px;
      order: -1;
    }
  }

  @media (max-width: 640px) {
    .services-page {
      padding: 64px 18px 72px;
    }

    .services-page__intro h1 {
      font-size: 28px;
    }

    .service-card {
      grid-template-columns: 1fr;
    }

    .service-card__media {
      order: -1;
    }

    .service-card__media img {
      min-height: 200px;
      position: relative;
    }

    .service-card__content {
      padding: 20px 18px 22px;
    }

    .services-commitment__panel h2 {
      font-size: 24px;
    }

    .services-commitment__panel {
      padding: 26px 20px 28px;
    }

    .services-commitment__media {
      min-height: 220px;
    }
  }

  /* ----- Service detail (Flexible rentals) ----- */
  .service-detail-page {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    overflow-x: clip;
    padding: 64px var(--page-gutter) 88px;
    width: 100%;
  }

  .service-detail-hero {
    margin-bottom: 40px;
  }

  .service-detail-hero__inner {
    align-items: stretch;
    display: grid;
    gap: 28px 36px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .service-detail-hero__text h1 {
    color: var(--color-ink);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0 0 14px;
  }

  .service-detail-hero__lead {
    color: rgba(20, 17, 80, 0.72);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 22px;
    max-width: 42ch;
  }

  .service-detail-hero__checks {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
  }

  .service-detail-hero__checks li {
    align-items: flex-start;
    color: rgba(20, 17, 80, 0.82);
    display: flex;
    font-size: 15px;
    gap: 12px;
    line-height: 1.35;
  }

  .service-detail-hero__check-icon {
    align-items: center;
    background: rgba(32, 99, 200, 0.12);
    border-radius: 999px;
    color: #1e4ead;
    display: inline-flex;
    flex: 0 0 auto;
    height: 26px;
    justify-content: center;
    margin-top: 1px;
    width: 26px;
  }

  .service-detail-hero__check-icon svg {
    height: 13px;
    width: 13px;
  }

  .service-detail-hero__check-icon-img {
    display: block;
    height: 14px;
    object-fit: contain;
    width: 14px;
  }

  .service-detail-hero__check-icon svg path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
  }

  .service-detail-hero__cta {
    align-items: center;
    background: var(--color-ink);
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
    height: 52px;
    justify-content: center;
    padding: 0 24px;
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease;
  }

  .service-detail-hero__cta img {
    filter: brightness(0) invert(1);
    height: 12px;
    width: 16px;
    transition: transform 180ms ease;
  }

  .service-detail-hero__cta:hover,
  .service-detail-hero__cta:focus-visible {
    background: #201b78;
    transform: translateY(-1px);
  }

  .service-detail-hero__cta:hover img,
  .service-detail-hero__cta:focus-visible img {
    transform: translateX(4px);
  }

  .service-detail-hero__media {
    border-radius: 20px;
    min-height: 280px;
    overflow: hidden;
    position: relative;
  }

  .service-detail-hero__media img {
    display: block;
    height: 100%;
    left: 0;
    min-height: 320px;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .service-detail-editor-content {
    margin: 0 0 28px;
    max-width: 720px;
  }

  .service-detail-editor-content > *:first-child {
    margin-top: 0;
  }

  .service-detail-editor-content > *:last-child {
    margin-bottom: 0;
  }

  .service-detail-layout {
    display: grid;
    gap: 32px 40px;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  }

  .service-detail-sidebar__card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(20, 17, 80, 0.05);
    padding: 20px 18px 18px;
    position: sticky;
    top: 132px;
  }

  .service-detail-sidebar__title {
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 14px;
  }

  .service-detail-sidebar__back {
    align-items: center;
    box-sizing: border-box;
    color: rgba(20, 17, 80, 0.55);
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
    justify-content: flex-start;
    line-height: 1.3;
    margin-bottom: 16px;
    padding: 6px 20px 6px 0;
    text-align: left;
    text-decoration: none;
    transition: color 0.2s ease;
    width: 100%;
  }

  .service-detail-sidebar__back-slot {
    align-items: center;
    display: flex;
    flex: 0 0 18px;
    height: 38px;
    justify-content: flex-start;
    width: 18px;
  }

  .service-detail-sidebar__back-slot svg {
    fill: none;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
    width: 16px;
  }

  .service-detail-sidebar__back-text {
    min-width: 0;
  }

  .service-detail-sidebar__back:hover,
  .service-detail-sidebar__back:focus-visible {
    color: rgba(20, 17, 80, 0.78);
  }

  .service-detail-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .service-detail-nav__link {
    align-items: flex-start;
    border-radius: 10px;
    color: inherit;
    display: flex;
    gap: 12px;
    padding: 10px 20px 10px 8px;
    position: relative;
    text-decoration: none;
  }

  .service-detail-nav__link:hover,
  .service-detail-nav__link:focus-visible {
    background: rgba(20, 17, 80, 0.04);
  }

  .service-detail-nav__link--current {
    background: rgba(20, 17, 80, 0.06);
  }

  .service-detail-nav__link--current::after {
    background: var(--color-ink);
    border-radius: 2px;
    content: "";
    height: 56%;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
  }

  .service-detail-nav__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .service-detail-nav__icon {
    align-items: center;
    align-self: center;
    background: rgba(20, 17, 80, 0.06);
    border-radius: 10px;
    color: var(--color-ink);
    display: flex;
    flex: 0 0 auto;
    height: 46px;
    justify-content: center;
    width: 46px;
  }

  .service-detail-nav__icon svg {
    height: 24px;
    width: 24px;
  }

  .service-detail-nav__icon-img {
    display: block;
    height: 24px;
    object-fit: contain;
    width: 24px;
  }

  .service-detail-nav__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .service-detail-nav__label {
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
  }

  .service-detail-nav__hint {
    color: rgba(20, 17, 80, 0.58);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
  }

  .service-detail-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
  }

  .service-detail-section > h2 {
    color: var(--color-ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 12px;
  }

  .service-detail-section > p.lead {
    color: rgba(20, 17, 80, 0.72);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 24px;
    max-width: 68ch;
  }

  .service-detail-section__body {
    border-top: 1px solid rgba(20, 17, 80, 0.08);
    padding-top: 28px;
  }

  .service-detail-icon-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-detail-icon-tile {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 14px;
    padding: 16px 14px;
  }

  .service-detail-icon-tile__icon {
    align-items: center;
    background: rgba(20, 17, 80, 0.06);
    border-radius: 10px;
    color: var(--color-ink);
    display: flex;
    height: 76px;
    justify-content: center;
    margin-bottom: 12px;
    width: 76px;
  }

  .service-detail-icon-tile__icon svg {
    display: block;
    height: 48px;
    width: 48px;
  }

  .service-detail-icon-tile__icon-img {
    display: block;
    height: 48px;
    object-fit: contain;
    width: 48px;
  }

  .service-detail-icon-tile__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .service-detail-icon-tile h3 {
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 6px;
  }

  .service-detail-icon-tile p {
    color: rgba(20, 17, 80, 0.65);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
  }

  .service-detail-benefits {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-detail-benefit {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 17, 80, 0.1);
    border-radius: 14px;
    padding: 18px 16px 20px;
  }

  .service-detail-benefit__icon {
    align-items: center;
    color: var(--color-ink);
    display: flex;
    height: 76px;
    margin-bottom: 12px;
    width: 76px;
  }

  .service-detail-benefit__icon svg {
    display: block;
    height: 48px;
    width: 48px;
  }

  .service-detail-benefit__icon-img {
    display: block;
    height: 48px;
    object-fit: contain;
    width: 48px;
  }

  .service-detail-benefit__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .service-detail-benefit h3 {
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 8px;
  }

  .service-detail-benefit p {
    color: rgba(20, 17, 80, 0.68);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
  }

  .service-detail-spotlights {
    --service-detail-spotlight-columns: 3;
    --service-detail-spotlights-width: 100%;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(var(--service-detail-spotlight-columns), minmax(0, 1fr));
    width: min(100%, var(--service-detail-spotlights-width));
  }

  .service-detail-spotlights--1 {
    --service-detail-spotlight-columns: 1;
    --service-detail-spotlights-width: 420px;
  }

  .service-detail-spotlights--2 {
    --service-detail-spotlight-columns: 2;
    --service-detail-spotlights-width: 860px;
  }

  .service-detail-spotlights--3plus {
    --service-detail-spotlight-columns: 3;
    --service-detail-spotlights-width: 100%;
  }

  .service-detail-spotlight {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    overflow: hidden;
    position: relative;
  }

  .service-detail-spotlight__anchor {
    color: inherit;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 260px;
    position: relative;
    text-decoration: none;
  }

  .service-detail-spotlight__anchor:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.82);
    outline-offset: -6px;
  }

  .service-detail-spotlight__bg {
    inset: 0;
    position: absolute;
  }

  .service-detail-spotlight__bg img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .service-detail-spotlight__scrim {
    background: linear-gradient(180deg, transparent 35%, rgba(15, 12, 60, 0.82) 100%);
    inset: 0;
    position: absolute;
  }

  .service-detail-spotlight__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 56px 18px 18px;
    position: relative;
    z-index: 1;
  }

  .service-detail-spotlight__eyebrow {
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .service-detail-spotlight h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin: 6px 0 8px;
  }

  .service-detail-spotlight p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    max-width: 36ch;
  }

  .service-detail-spotlight__action {
    align-items: center;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    bottom: 16px;
    color: var(--color-ink);
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 16px;
    text-decoration: none;
    width: 40px;
  }

  .service-detail-spotlight__action img {
    filter: brightness(0);
    height: 10px;
    transform: none;
    width: 14px;
  }

  .service-detail-included {
    display: grid;
    gap: 14px 20px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-detail-included__item {
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
  }

  .service-detail-included__icon {
    align-items: center;
    background: rgba(20, 17, 80, 0.06);
    border-radius: 10px;
    color: var(--color-ink);
    display: flex;
    height: 72px;
    justify-content: center;
    width: 72px;
  }

  .service-detail-included__icon svg {
    display: block;
    height: 44px;
    width: 44px;
  }

  .service-detail-included__icon-img {
    display: block;
    height: 44px;
    object-fit: contain;
    width: 44px;
  }

  .service-detail-included__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .service-detail-included span:last-child {
    color: rgba(20, 17, 80, 0.75);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
  }

  @media (max-width: 1100px) {
    .service-detail-benefits {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

  @media (max-width: 980px) {
    .service-detail-page {
      padding: 64px 24px 80px;
    }

    .service-detail-hero__inner {
      grid-template-columns: 1fr;
    }

    .service-detail-hero__media {
      min-height: 240px;
      order: -1;
    }

    .service-detail-hero__media img {
      min-height: 240px;
      position: relative;
    }

    .service-detail-layout {
      grid-template-columns: 1fr;
    }

    /* Main first: Overview → … → What’s included, then Explore other services */
    .service-detail-main {
      order: -1;
    }

    .service-detail-sidebar__card {
      position: static;
      top: auto;
    }

    .service-detail-spotlights {
      --service-detail-spotlight-columns: 1;
      --service-detail-spotlights-width: 100%;
      width: 100%;
      grid-template-columns: 1fr;
    }

    .service-detail-included {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .service-detail-page {
      padding: 64px 18px 72px;
    }

    .service-detail-editor-content {
      margin-bottom: 22px;
    }

    .service-detail-included {
      gap: 12px;
      grid-template-columns: 1fr;
      padding-top: 22px;
    }

    .service-detail-included__icon {
      height: 58px;
      width: 58px;
    }

    .service-detail-included__icon svg {
      height: 34px;
      width: 34px;
    }

    .service-detail-included__icon-img {
      height: 34px;
      width: 34px;
    }

    .service-detail-included__item {
      align-items: center;
      display: flex;
      gap: 12px;
      padding: 0;
      text-align: left;
    }

    .service-detail-included__item span:last-child {
      color: rgba(20, 17, 80, 0.82);
      font-size: 14px;
      line-height: 1.35;
    }

    .service-detail-icon-tile__icon {
      height: 60px;
      width: 60px;
    }

    .service-detail-icon-tile__icon svg {
      height: 36px;
      width: 36px;
    }

    .service-detail-icon-tile__icon-img {
      height: 36px;
      width: 36px;
    }

    .service-detail-benefit__icon {
      height: 60px;
      width: 60px;
    }

    .service-detail-benefit__icon svg {
      height: 36px;
      width: 36px;
    }

    .service-detail-benefit__icon-img {
      height: 36px;
      width: 36px;
    }

    .service-detail-hero__text h1 {
      font-size: 26px;
    }

    .service-detail-spotlights {
      width: 100%;
    }
  }

  /* ----- About page ----- */
  .about-page {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: var(--page-max-width);
    min-width: 0;
    overflow-x: clip;
    padding: 64px var(--page-gutter) 88px;
    width: 100%;
  }

  .about-page__intro {
    margin-bottom: 24px;
  }

  .about-page__intro p {
    max-width: min(54rem, 100%);
  }

  .about-page__intro h1 {
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
  }

  .about-page__hero {
    border-radius: 20px;
    margin: 0 0 44px;
    overflow: hidden;
  }

  .about-page__hero img {
    display: block;
    max-height: min(52vh, 440px);
    object-fit: cover;
    width: 100%;
  }

  .about-page__mission {
    margin-bottom: 44px;
  }

  .about-page__mission > h2 {
    color: var(--color-ink);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px;
  }

  .about-page__mission-grid {
    align-items: start;
    display: grid;
    gap: 28px 48px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .about-page__mission-copy p {
    color: rgba(20, 17, 80, 0.78);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }

  .about-page__mission-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .about-page__mission-list li {
    align-items: flex-start;
    color: rgba(20, 17, 80, 0.85);
    display: flex;
    font-size: 15px;
    gap: 14px;
    line-height: 1.45;
  }

  .about-page__mission-check {
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(20, 17, 80, 0.22);
    border-radius: 999px;
    color: var(--color-ink);
    display: inline-flex;
    flex: 0 0 auto;
    height: 30px;
    justify-content: center;
    margin-top: 1px;
    width: 30px;
  }

  .about-page__mission-check svg {
    height: 14px;
    width: 14px;
  }

  .about-page__mission-check svg path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
  }

  .about-page__stats {
    background: rgba(20, 17, 80, 0.05);
    border: 1px solid rgba(20, 17, 80, 0.06);
    border-radius: 16px;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 48px;
    overflow: hidden;
    padding: 0;
  }

  .about-page__stat {
    background: rgba(255, 255, 255, 0.65);
    padding: 24px 16px;
    text-align: center;
  }

  .about-page__stat strong {
    color: var(--color-ink);
    display: block;
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .about-page__stat span {
    color: rgba(20, 17, 80, 0.58);
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    margin-top: 8px;
  }

  .about-page__team-intro {
    margin-bottom: 22px;
  }

  .about-page__team-intro h2 {
    color: var(--color-ink);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 8px;
  }

  .about-page__team-intro p {
    color: rgba(20, 17, 80, 0.68);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    max-width: 48ch;
  }

  .about-page__team-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-page__member {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 17, 80, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(20, 17, 80, 0.05);
    overflow: hidden;
  }

  .about-page__member-photo {
    aspect-ratio: 3 / 4;
    background: rgba(20, 17, 80, 0.06);
    overflow: hidden;
  }

  .about-page__member-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .about-page__member h3 {
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    padding: 14px 16px 2px;
  }

  .about-page__member > p {
    color: rgba(20, 17, 80, 0.58);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    padding: 0 16px 16px;
  }

  @media (max-width: 980px) {
    .about-page {
      padding: 64px 24px 80px;
    }

    .about-page__mission-grid {
      gap: 24px;
      grid-template-columns: 1fr;
    }

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

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

  @media (max-width: 640px) {
    .about-page {
      padding: 64px 18px 72px;
    }

    .about-page__intro h1 {
      font-size: 28px;
    }

    .about-page__stats {
      grid-template-columns: 1fr;
    }

    .about-page__team-grid {
      grid-template-columns: 1fr;
    }

  }

  /* Final feature grid contract: keep separators and icon alignment consistent on every breakpoint. */
  .room-features__grid,
  .room-features-modal__grid {
    display: grid;
    gap: 1px;
    padding: 1px;
    background: rgba(20, 17, 80, 0.08);
    border: 0;
    border-radius: 24px;
    overflow: hidden;
  }

  .room-features__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .room-features-modal__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .room-features__card,
  .room-features__placeholder,
  .room-features-modal__item,
  .room-features-modal__placeholder {
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 92px;
    padding: 20px 32px;
  }

  .room-features__card,
  .room-features-modal__item {
    align-items: center;
    display: grid;
    column-gap: 18px;
    grid-template-columns: 36px minmax(0, 1fr);
    justify-content: start;
    text-align: left;
  }

  .room-features__icon {
    align-items: center;
    color: var(--color-ink);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    justify-self: center;
    line-height: 0;
    overflow: hidden;
    width: 36px;
  }

  .room-features__icon > svg,
  .room-features__icon .quickstay-icon-raw,
  .room-features__icon .quickstay-icon-raw > svg {
    display: block;
    height: 36px;
    max-height: 36px;
    max-width: 36px;
    width: 36px;
  }

  .room-features__card > span:last-child,
  .room-features-modal__item > span:last-child {
    align-self: center;
    justify-self: start;
    line-height: 1.25;
    min-width: 0;
    text-align: left;
  }

  .room-features-modal__item,
  .room-features-modal__placeholder {
    min-height: 80px;
  }

  @media (max-width: 980px) {
    .room-features__grid,
    .room-features-modal__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .room-features__grid,
    .room-features-modal__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .room-features__card,
    .room-features__placeholder,
    .room-features-modal__item,
    .room-features-modal__placeholder {
      min-height: 76px;
      padding: 16px 18px;
    }

    .room-features__card,
    .room-features-modal__item {
      column-gap: 14px;
    }
  }

  /* Final icon alignment override for home/service detail feature rows. */
  .room-features .room-features__card,
  .room-features-modal .room-features-modal__item {
    align-items: center;
    column-gap: 8px;
    grid-template-columns: 36px minmax(0, 1fr);
    justify-content: start;
    min-height: 76px;
    padding: 14px 18px;
  }

  .room-features__icon {
    align-items: center;
    color: var(--color-ink);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    justify-self: start;
    width: 36px;
  }

  .room-features__icon > svg,
  .room-features__icon .quickstay-icon-raw,
  .room-features__icon .quickstay-icon-raw > svg,
  .room-features__icon .quickstay-icon-raw svg {
    display: block;
    height: 36px;
    max-height: 36px;
    max-width: 36px;
    transform: scale(var(--feature-icon-scale, 1));
    transform-origin: center;
    width: 36px;
  }

  .room-features__icon > svg,
  .room-page__feature-icon > svg {
    stroke-width: 1.55;
  }

  .room-features__icon--furnished,
  .room-features__icon--twin-beds,
  .room-features__icon--bathroom,
  .room-features__icon--workspace,
  .room-features__icon--balcony,
  .room-features__icon--kitchen,
  .room-features__icon--heating,
  .room-features__icon--coffee-machine {
    --feature-icon-scale: 1;
  }

  .room-features__icon--wifi {
    --feature-icon-scale: 1;
  }

  .room-features__icon--king-bed,
  .room-features__icon--bedroom,
  .room-features__icon--parking {
    --feature-icon-scale: 1;
  }

  .room-features .room-features__card > span:last-child,
  .room-features-modal .room-features-modal__item > span:last-child {
    align-self: center;
    line-height: 1.25;
  }

  .service-detail-included__item {
    align-items: center;
    column-gap: 12px;
  }

  .service-detail-included__icon {
    height: 36px;
    width: 36px;
  }

  .service-detail-included__icon svg,
  .service-detail-included__icon-img,
  .service-detail-included__icon .quickstay-icon-raw,
  .service-detail-included__icon .quickstay-icon-raw > svg,
  .service-detail-included__icon .quickstay-icon-raw svg {
    display: block;
    height: 36px;
    max-height: 36px;
    max-width: 36px;
    width: 36px;
  }

  @media (max-width: 640px) {
    .room-features .room-features__card,
    .room-features-modal .room-features-modal__item {
      column-gap: 8px;
      grid-template-columns: 24px minmax(0, 1fr);
      justify-content: start;
      min-height: 68px;
      padding: 12px 14px;
    }

    .service-detail-included__item {
      column-gap: 10px;
    }
  }

  /* Hero feature icons: align the icon boxes and drawings to the same left edge. */
  .room-page__features li {
    grid-template-columns: 42px minmax(0, 1fr);
    justify-items: start;
  }

  .room-page__feature-icon {
    height: 40px;
    justify-content: flex-start;
    justify-self: start;
    width: 42px;
  }

  .room-page__feature-icon > svg,
  .room-page__feature-icon .quickstay-icon-raw,
  .room-page__feature-icon .quickstay-icon-raw > svg,
  .room-page__feature-icon .quickstay-icon-raw svg {
    margin-left: 0;
    transform-origin: left center;
  }

  .room-page__feature-icon .quickstay-icon-raw {
    justify-content: flex-start;
  }

  .room-page__copy .room-page__features li {
    gap: 6px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .room-page__copy .room-page__feature-icon {
    height: 40px;
    width: 40px;
  }

  .room-page__copy .room-page__feature-icon > svg,
  .room-page__copy .room-page__feature-icon .quickstay-icon-raw,
  .room-page__copy .room-page__feature-icon .quickstay-icon-raw > svg,
  .room-page__copy .room-page__feature-icon .quickstay-icon-raw svg {
    height: 36px;
    max-height: 36px;
    max-width: 36px;
    width: 36px;
  }
