/* ============================================
   九龍豪宅 KOWLOON LUXURY
   風格：沉浸式 Hero + 標籤篩選 + 概覽卡片
   配色：深藍 + 金 + 暖灰
   ============================================ */

/* === CSS Variables === */
:root {
  --primary: #0f1724;        /* 深藍 */
  --primary-dark: #0a0f18;
  --accent: #1a2530;         /* 深藍灰 */
  --accent-light: #c9a86c;   /* 香檳金 */
  --accent-2: #c9a86c;       /* 金色 */
  --bg: #f5f3ef;             /* 暖灰 */
  --bg-white: #fffdfb;       /* 暖白 */
  --text: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-light: #999;
  --border: #e8e4de;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.20);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", serif;
  --transition: 0.2s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

/* === Top Navigation === */
.top-nav {
  background: var(--primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.top-nav__logo {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.top-nav__btn {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  transition: all var(--transition);
}

.top-nav__btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 48px 24px 64px;
  overflow: hidden;
  background: #0f1724;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20,38,45,0.35) 0%,
    rgba(20,38,45,0.55) 45%,
    rgba(20,38,45,0.78) 100%
  );
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 70% 50%,
    rgba(201,168,108,0.12) 0%,
    transparent 60%
  );
}

.hero__main {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: end;
}

.hero__content {
  max-width: 620px;
}

.hero__kicker {
  color: rgba(255,255,255,0.62);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
}

.chip:hover,
.chip.active {
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  border-color: rgba(255,255,255,0.9);
}

/* === Summary Card === */
.summary-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.5);
}

.summary-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.summary-card__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.summary-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.summary-card__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-card__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-2);
  line-height: 1;
}

.summary-card__label {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* === Filter Bar === */
.filter-bar {
  max-width: 1200px;
  margin: -28px auto 0;
  padding: 20px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.filter-bar__group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-bar__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.filter-bar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  white-space: nowrap;
}

.filter-tag:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.filter-tag.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* === Recommendations === */
.recommendations {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.recommendations__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.results-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-sort label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.results-sort select {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--bg-white);
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
}

/* === Room Grid === */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* === Room Card === */
.room-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
}

.room-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.room-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.room-card__image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.room-card:hover .room-card__image-bg {
  transform: scale(1.05);
}

.room-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.room-card:hover .room-card__photo {
  transform: scale(1.05);
}

.room-card__photos-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 3px 9px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(26, 46, 53, 0.82);
  backdrop-filter: blur(4px);
}

/* 詳情彈窗相簿 */
.detail-gallery {
  margin-bottom: 18px;
}

.detail-main {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background: #0c1320;
}

.detail-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.detail-thumb {
  width: 76px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  flex: 0 0 auto;
  transition: border-color 0.15s;
}

.detail-thumb.is-active,
.detail-thumb:hover {
  border-color: #c9a86c;
}

.room-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(26,46,53,0.82);
  backdrop-filter: blur(4px);
}

.room-card__bookmark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.room-card__bookmark:hover,
.room-card__bookmark.active {
  background: #c9a86c;
  color: #fff;
}

.room-card__body {
  padding: 16px;
}

.room-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.35;
}

.room-card__code {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-2);
  opacity: 0.82;
  margin-bottom: 8px;
}

.room-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.room-card__quote {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
  min-height: 38px;
}

.room-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.room-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-2);
  line-height: 1;
}

.room-card__price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 2px;
}

.room-card__meta {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

.room-card__ad {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 3px;
}

/* === No Results === */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
}

.no-results__icon {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.4;
}

.no-results__text {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* === Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
}

.pagination__btn {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--bg-white);
  transition: all var(--transition);
  padding: 0 10px;
}

.pagination__btn:hover:not(.pagination__btn--disabled) {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.pagination__btn--active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 700;
}

.pagination__btn--disabled {
  color: var(--text-light);
  cursor: not-allowed;
  opacity: 0.5;
}

/* === Promo Footer === */
.promo-footer {
  background: #15181a;
  color: #fff;
  padding: 40px 24px 32px;
  margin-top: 20px;
}

.promo-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.promo-footer__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.promo-footer__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

.promo-footer__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  max-width: 560px;
  line-height: 1.6;
}

.promo-footer__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.promo-footer__heart {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition);
}

.promo-footer__heart:hover {
  color: #c9a86c;
}

/* === Footer === */
.footer {
  background: var(--primary);
  color: #7d8e95;
  padding: 16px 24px;
  text-align: center;
}

.footer__bottom {
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.footer .container a.footer__admin {
  display: block;
  margin-top: 4px;
}

.footer__admin {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(201,168,108,0.5);
  text-decoration: none;
  opacity: 0.65;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer__admin:hover {
  color: var(--accent);
  opacity: 1;
}

/* === School Net Page Styles === */

.top-nav__btn--active {
  background: rgba(201,168,108,0.18);
  border-color: rgba(201,168,108,0.45);
  color: #fff;
}

.hero--compact {
  min-height: 320px;
  padding: 40px 24px 48px;
}

.hero--compact .hero__main {
  grid-template-columns: 1fr;
  align-items: center;
}

.hero--compact .hero__content {
  max-width: 760px;
}

.hero--compact .hero__title {
  font-size: 2.6rem;
}

.section {
  padding: 56px 24px;
}

.section--white {
  background: var(--bg-white);
}

.section--muted {
  background: var(--bg);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.section__note {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.88rem;
  padding: 14px 18px;
  background: rgba(201,168,108,0.08);
  border-radius: var(--radius-md);
}

.net-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.net-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.net-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.net-card__badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.net-card__area {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.net-card__cover {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 3em;
}

.net-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.net-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.net-card--secondary {
  display: flex;
  flex-direction: column;
}

.net-card--secondary .school-items {
  margin-top: 16px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tabs__btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.tabs__btn:hover {
  border-color: var(--accent-light);
  color: var(--primary);
}

.tabs__btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.tab-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.tab-panel__header {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.tab-panel__header h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.tab-panel__header h3 span {
  font-weight: 400;
  color: var(--text-secondary);
}

.tab-panel__header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.school-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.school-items--compact {
  gap: 8px;
}

.school-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.school-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.school-card__name {
  font-weight: 600;
  color: var(--primary);
}

.school-card__en {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: right;
}

.school-card__meta {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 18px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.school-link {
  color: var(--accent-light);
  text-decoration: none;
  white-space: nowrap;
}

.school-link:hover {
  text-decoration: underline;
}

.school-card__area {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-left: auto;
}

.school-code {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  min-width: 42px;
}

.school-name {
  color: var(--text);
  flex: 1;
}

.school-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.school-tag--aided {
  background: #e8e4de;
  color: #5a5a5a;
}

.school-tag--gov {
  background: #d6e4f0;
  color: #2c5a82;
}

.school-tag--dss {
  background: rgba(201,168,108,0.15);
  color: #8a6d3b;
}

.school-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.school-row {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}

.school-row__name {
  font-weight: 600;
  color: var(--primary);
  flex: 1;
}

.school-row__en {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  flex: 1;
}

.school-row__area {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.disclaimer {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.7;
}

.disclaimer h3 {
  color: var(--accent-light);
  font-size: 1rem;
  margin-bottom: 12px;
}

.disclaimer p + p {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .net-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .net-grid--2 {
    grid-template-columns: 1fr;
  }

  .school-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero--compact {
    min-height: 260px;
  }

  .hero--compact .hero__title {
    font-size: 1.9rem;
  }

  .section {
    padding: 40px 20px;
  }

  .section__title {
    font-size: 1.5rem;
  }

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

  .tabs__nav {
    gap: 8px;
  }

  .tabs__btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .school-row {
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .school-row__name {
    width: 100%;
  }
}
/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.room-card {
  animation: fadeInUp 0.35s ease forwards;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero__main {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
  }

  .summary-card {
    max-width: 400px;
  }

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

  .filter-bar {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 420px;
    padding: 40px 20px 48px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 0.88rem;
  }

  .hero__main {
    gap: 24px;
  }

  .summary-card {
    width: 100%;
    max-width: none;
  }

  .summary-card__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .filter-bar {
    margin-top: -20px;
    padding: 16px 20px;
  }

  .filter-bar__group {
    flex-wrap: wrap;
  }

  .recommendations {
    padding: 28px 20px 40px;
  }

  .recommendations__header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .promo-footer__title {
    font-size: 1.15rem;
  }
}
