:root {
  --ink: #231f19;
  --muted: #6d665c;
  --paper: #fffdf8;
  --panel: #ffffff;
  --line: #e7dcc9;
  --header: #211b14;
  --bronze: #8c6422;
  --gold: #d0a23a;
  --soft: #f5efe2;
  --green: #27624e;
  --danger: #9f2d2d;
  --shadow-card: 0 2px 8px rgba(35, 31, 25, 0.08);
  --shadow-elevated: 0 12px 34px rgba(35, 31, 25, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8 0%, #f7f1e8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: calc(100% - 32px);
  max-width: 1120px;
  margin: 0 auto;
}

.site-fallback {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(33, 27, 20, 0.98);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 68px;
  gap: 20px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 240px;
}

.logo-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #fff;
  border: 1px solid rgba(208, 162, 58, 0.42);
  border-radius: 6px;
  padding: 5px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo-mark > span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 154, 66, 0.55);
  border-radius: 6px;
  background: #fff;
  color: var(--bronze);
}

.brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.brand-text span {
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  margin-left: auto;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav-menu {
  display: none;
  position: relative;
  z-index: 80;
  flex: 0 0 auto;
}

.mobile-nav-menu summary {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 210, 104, 0.86);
  border-radius: 8px;
  background: #f6d268;
  color: #171108;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
  list-style: none;
}

.mobile-nav-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-menu summary span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-menu summary span + span {
  margin-top: 4px;
}

.mobile-nav-menu nav {
  display: grid;
  gap: 6px;
  position: absolute;
  top: calc(100% + 8px);
  left: auto;
  right: 0;
  width: min(330px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(246, 210, 104, 0.24);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(18, 15, 10, 0.98), rgba(31, 24, 16, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.mobile-nav-menu nav a {
  padding: 13px 14px;
  border-radius: 8px;
  text-decoration: none;
}

.mobile-nav-menu nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 10px 16px;
  background: var(--header);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
}

.button.gold {
  background: var(--gold);
  color: #1e1708;
}

.button.secondary {
  background: var(--bronze);
}

.button.ghost {
  background: transparent;
  border: 1px solid currentColor;
}

.button:hover,
button.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 18px rgba(35, 31, 25, 0.14);
}

.hero {
  position: relative;
  min-height: 610px;
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 27, 20, 0.86), rgba(33, 27, 20, 0.55) 45%, rgba(33, 27, 20, 0.88));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 84px 0 142px;
  max-width: 760px;
  width: calc(100% - 32px);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 800;
  line-height: 1.05;
}

.hero-brand small {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 7vw, 68px);
  margin: 10px 0 18px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 12px;
}

h3 {
  margin-top: 0;
}

.accent {
  color: var(--gold);
}

.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
}

.search-shell {
  position: relative;
  z-index: 2;
  margin-top: -72px;
}

.booking-search {
  display: grid;
  grid-template-columns: 1fr 1fr 150px auto;
  gap: 6px;
  padding: 6px;
  background: var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow-elevated);
}

.booking-search label {
  background: var(--panel);
  border-radius: 6px;
  padding: 12px;
}

.booking-search .button {
  min-height: 100%;
}

.section {
  padding: 64px 0;
}

.section.compact {
  padding: 24px 0;
}

.muted {
  color: var(--muted);
}

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

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card,
.feature-card,
.guide-card,
.review-card,
.react-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.card:hover,
.guide-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.card-body {
  padding: 22px;
}

.room-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
  transition: transform 500ms ease;
}

.room-card-link,
.guide-card {
  display: block;
  text-decoration: none;
}

.room-card-link:hover .room-img {
  transform: scale(1.045);
}

.room-title {
  color: var(--bronze);
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 8px;
  text-decoration: none;
}

.room-meta,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.price {
  color: var(--header);
  font-size: 24px;
  font-weight: 850;
}

.price small {
  font-size: 12px;
  color: var(--muted);
}

.band {
  background: var(--header);
  color: #fff;
}

.band .muted {
  color: rgba(255, 255, 255, 0.75);
}

.form-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  color: var(--ink);
}

.perks {
  margin-top: 88px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--soft);
  border-radius: 8px;
}

.perk-icon {
  color: var(--bronze);
  font-weight: 900;
  width: 24px;
  height: 24px;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(18, 15, 10, 0.96), rgba(35, 31, 25, 0.9)),
    url("/assets/hlalithwa/property/photo-10.jpg") center / cover;
  color: #fff;
  padding: 64px 0;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.hero-actions,
.hero-actions p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-card,
.guide-card,
.review-card {
  padding: 22px;
}

.seo-cta {
  margin-top: 20px;
}

.seo-cta .button {
  margin: 8px 8px 0 0;
}

.feature-card svg {
  color: var(--gold);
}

.feature-card strong,
.guide-card strong {
  display: block;
  color: var(--header);
  margin-bottom: 6px;
}

.guide-card span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.room-list {
  gap: 16px;
}

.room-list-item {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 220px;
}

.room-list-item > img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.rate-box {
  border-left: 1px solid var(--line);
  padding: 22px;
  display: grid;
  align-content: end;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.rate-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rate-box strong {
  font-size: 28px;
}

.room-detail-intro {
  padding: 46px 0 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), rgba(238, 229, 211, 0.7)),
    var(--paper);
}

.room-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 26px;
  align-items: center;
}

.room-photo-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, 128px);
  gap: 10px;
  min-width: 0;
}

.room-photo-main {
  margin: 0;
  min-width: 0;
  min-height: 340px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow-elevated);
}

.room-photo-main img,
.room-photo-thumb img,
img.room-photo-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-photo-strip {
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  gap: 10px;
  min-height: 0;
}

.room-photo-thumb {
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background: var(--soft);
  box-shadow: 0 10px 24px rgba(20, 14, 6, 0.12);
}

.room-detail-summary {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(157, 116, 36, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.room-detail-summary h1 {
  margin-bottom: 12px;
}

.room-detail-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  position: relative;
  color: #fff;
  overflow: hidden;
}

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

.room-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 31, 25, 0.24), rgba(35, 31, 25, 0.88));
}

.room-detail-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 62px;
}

.wide-button {
  width: 100%;
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details,
.article-body {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.article-body {
  max-width: 820px;
}

.article-body p {
  font-size: 17px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 96px;
}

.footer {
  background: var(--header);
  color: rgba(255, 255, 255, 0.82);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold);
}

.footer-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  box-shadow: none;
}

.react-panel {
  padding: 24px;
  box-shadow: var(--shadow-elevated);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-heading h1 {
  margin: 4px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.panel-icon {
  color: var(--gold);
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.availability-bar,
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  margin-top: 24px;
}

.room-picker {
  display: grid;
  gap: 10px;
  align-content: start;
}

.room-option {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.room-option.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 154, 66, 0.18);
}

.room-option img {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

.room-option small,
.summary-card p {
  display: block;
  color: var(--muted);
}

.wide {
  grid-column: 1 / -1;
}

.summary-card {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.checkbox input {
  width: auto;
  min-height: auto;
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.booking-summary p {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin: 0;
}

.booking-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-error,
.app-success {
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 760;
}

.app-error {
  background: #fff0f0;
  color: var(--danger);
}

.app-success {
  background: #edf8f1;
  color: #24714f;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.stat,
.mini-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  padding: 14px;
}

.stat span,
.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.stat strong {
  display: block;
  font-size: 28px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
  font-size: 13px;
}

.admin-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: var(--paper);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 18px;
  background: var(--header);
  color: #fff;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.admin-brand span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.admin-brand small {
  color: rgba(255, 255, 255, 0.68);
  overflow-wrap: anywhere;
}

.admin-nav,
.admin-sidebar-actions,
.admin-top-actions {
  display: grid;
  gap: 8px;
}

.admin-nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.admin-nav button.active,
.admin-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #211b14;
}

.admin-sidebar-actions .small-button {
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.admin-main {
  min-width: 0;
  padding: 24px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.admin-topbar .eyebrow {
  margin: 0 0 2px;
}

.admin-top-actions {
  grid-auto-flow: column;
  align-items: center;
}

.compact-head {
  align-items: start;
  margin-bottom: 14px;
}

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 18px;
}

.tab-bar button,
.small-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d9d0c0;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  min-height: 38px;
  padding: 8px 11px;
  font-weight: 740;
  cursor: pointer;
}

.tab-bar button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.status-good {
  color: #24714f;
  font-weight: 800;
}

.status-bad {
  color: var(--danger);
  font-weight: 800;
}

.mini-card {
  display: grid;
  gap: 8px;
}

.compact-form {
  display: grid;
  gap: 10px;
}

@media (max-width: 900px) {
  .nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .brand {
    min-width: 220px;
    max-width: calc(100% - 8px);
  }

  .logo-mark {
    width: 48px;
    height: 48px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 9px;
  }

  h1 {
    font-size: clamp(28px, 7.6vw, 30px);
    overflow-wrap: break-word;
  }

  .hero-content h1 .accent {
    display: block;
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 108px;
    width: calc(100% - 32px);
    max-width: 340px;
  }

  .hero-brand {
    margin-bottom: 14px;
  }

  .lead {
    font-size: 16px;
    max-width: 100%;
  }

  .grid.rooms,
  .grid.two,
  .feature-grid,
  .guide-grid,
  .footer-grid,
  .perks,
  .booking-search,
  .booking-summary,
  .availability-bar,
  .form-grid,
  .booking-layout,
  .stat-grid,
  .admin-columns,
  .admin-layout,
  .room-list-item {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: auto;
    grid-template-rows: auto;
  }

  .admin-nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .admin-nav button {
    width: auto;
    white-space: nowrap;
  }

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

  .admin-main {
    padding: 16px;
  }

  .admin-topbar,
  .admin-top-actions {
    grid-auto-flow: row;
    align-items: stretch;
  }

  .hero {
    min-height: 500px;
  }

  .rate-box {
    border-left: 0;
    border-top: 1px solid var(--line);
    justify-items: start;
    text-align: left;
  }

  .room-detail-intro {
    padding: 24px 0 10px;
  }

  .room-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .room-photo-main {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .room-photo-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .room-photo-strip::-webkit-scrollbar {
    display: none;
  }

  .room-photo-thumb {
    flex: 0 0 88px;
    height: 72px;
    aspect-ratio: auto;
  }

  .room-detail-summary {
    padding: 22px;
  }

  .footer-logo {
    width: 80px;
    height: 80px;
  }

  body {
    overflow-x: hidden;
  }
}

@media (max-width: 440px) {
  .brand {
    min-width: 0;
  }

  .brand-text span {
    display: none;
  }
}

@media (max-width: 1280px) {
  .site-header .nav {
    position: relative;
  }

  .site-header .nav-links {
    display: none;
  }

  .mobile-nav-menu {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    z-index: 80;
    transform: none;
  }

  .mobile-nav-menu summary {
    display: grid;
    place-items: center;
  }

  .mobile-nav-menu nav {
    width: min(330px, calc(100vw - 32px));
    left: auto;
  }
}

.admin-stack { display: grid; gap: 18px; }
.admin-three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.icon-only {
  width: 34px;
  height: 34px;
  justify-content: center;
  padding: 0;
}
.admin-detail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  background: rgba(32, 24, 14, 0.36);
}
.admin-detail-drawer {
  width: min(620px, 100%);
  height: 100%;
  overflow: auto;
  background: #fffdfa;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(35, 24, 12, 0.22);
  padding: 22px;
}
.admin-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.admin-detail-head h2 {
  margin: 2px 0 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}
.admin-detail-toolbar,
.admin-detail-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin: 14px 0;
}
.admin-detail-grid {
  display: grid;
  gap: 10px;
  margin: 0;
}
.admin-detail-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(157, 116, 36, 0.14);
}
.admin-detail-row dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.admin-detail-row dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.drawer-form {
  display: grid;
  gap: 12px;
}
.drawer-form > label,
.drawer-form .wide {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--ink);
}
.drawer-form input,
.drawer-form select,
.drawer-form textarea {
  width: 100%;
  border: 1px solid #dfd5c7;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}
.drawer-form textarea { min-height: 118px; resize: vertical; }
.drawer-form .checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.drawer-form .checkbox input { width: auto; }

@media (max-width: 900px) {
  .admin-three-columns { grid-template-columns: 1fr; }
  .admin-detail-drawer {
    width: 100%;
    border-left: 0;
    padding: 18px;
  }
  .admin-detail-row { grid-template-columns: 1fr; gap: 4px; }
}
