:root {
  --bg: #f6efe6;
  --bg-deep: #efe1d0;
  --surface: rgba(255, 252, 248, 0.78);
  --surface-strong: #fffaf4;
  --text: #1d140f;
  --muted: #6d5a4e;
  --line: rgba(52, 31, 19, 0.12);
  --accent: #a64b2a;
  --accent-strong: #7d3118;
  --accent-soft: #f3ddc8;
  --success: #1f6b57;
  --shadow: 0 20px 60px rgba(74, 39, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(180deg, #f7efe7 0%, #f1e5d7 55%, #ead8c7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 24px auto 48px;
}

.topbar,
.filter-bar,
.featured-section,
.listing-card,
.why-us,
.hero-card,
.floating-review,
.form-shell,
.results-search-shell,
.admin-card {
  backdrop-filter: blur(20px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 248, 240, 0.72);
  box-shadow: var(--shadow);
  position: sticky;
  top: 18px;
  z-index: 10;
}

.mobile-menu-toggle,
.mobile-auth-button,
.mobile-nav-drawer,
.mobile-nav-links,
.mobile-nav-close,
.mobile-nav-backdrop {
  display: none;
}

.topbar-side,
.auth-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(340px, 48vw);
  object-fit: contain;
}

.topnav {
  display: inline-flex;
  gap: 22px;
  flex-wrap: wrap;
}

.mobile-menu-toggle,
.mobile-auth-button {
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(52, 31, 19, 0.12);
  background: rgba(255, 250, 244, 0.78);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(52, 31, 19, 0.08);
}

.mobile-menu-toggle {
  gap: 4px;
  flex-direction: column;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-auth-button {
  text-decoration: none;
}

.mobile-auth-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-nav-close {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(125, 49, 24, 0.14);
  border-radius: 50%;
  background: rgba(255, 251, 247, 0.88);
  color: var(--accent-strong);
  box-shadow: 0 10px 24px rgba(52, 31, 19, 0.08);
  cursor: pointer;
}

.mobile-nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.mobile-nav-kicker {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-nav-drawer {
  position: fixed;
  top: 12px;
  left: 12px;
  bottom: 12px;
  z-index: 20;
  width: min(82vw, 320px);
  padding: 22px 20px 30px;
  background:
    radial-gradient(circle at top right, rgba(226, 160, 116, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(241, 227, 211, 0.98));
  border: 1px solid rgba(52, 31, 19, 0.08);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(20, 12, 8, 0.26);
  transform: translateX(calc(-100% - 24px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 240ms ease, opacity 180ms ease;
  overflow-y: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-links a {
  display: block;
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.58);
  border: 1px solid rgba(52, 31, 19, 0.06);
}

.mobile-nav-links a:hover {
  background: rgba(243, 221, 200, 0.62);
  color: var(--accent-strong);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(17, 11, 8, 0.42);
  backdrop-filter: blur(4px);
  z-index: 19;
}

.topnav a,
.topbar-cta,
.primary-button,
.ghost-button,
.secondary-button,
.inline-link,
.chip {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    border-color 180ms ease, box-shadow 180ms ease;
}

.topnav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.topnav a:hover,
.inline-link:hover {
  color: var(--accent-strong);
}

.topbar-cta,
.primary-button,
.secondary-button,
.search-button {
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}

.topbar-cta,
.primary-button,
.search-button {
  background: var(--text);
  color: #fffaf4;
  padding: 14px 20px;
}

.topbar-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.chip:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  padding: 54px;
  margin-top: 18px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  min-height: 720px;
  border: 1px solid rgba(255, 244, 233, 0.42);
  box-shadow: 0 36px 90px rgba(71, 36, 18, 0.18);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 18, 12, 0.72) 0%, rgba(30, 18, 12, 0.54) 34%, rgba(30, 18, 12, 0.28) 58%, rgba(30, 18, 12, 0.18) 100%),
    linear-gradient(180deg, rgba(214, 136, 78, 0.14), rgba(48, 28, 18, 0.2)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 168, 0.26), transparent 70%);
  filter: blur(12px);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.filter-header h2,
.why-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  max-width: 11ch;
}

.hero-text,
.listing-content p,
.why-copy p,
.why-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.hero .eyebrow,
.hero h1,
.hero-text,
.hero-stats strong,
.hero-stats span {
  color: #fff7ef;
}

.hero .eyebrow {
  color: rgba(255, 231, 210, 0.88);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

.hero-search-form,
.results-search-form,
.hotel-form {
  display: grid;
  gap: 12px;
}

.hero-search-form {
  margin: 28px 0 20px;
}

.hero-search-label {
  color: var(--muted);
  font-weight: 700;
}

.hero-search-row,
.results-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.spotlight-search {
  margin: 32px 0 20px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(249, 236, 221, 0.88));
  border: 1px solid rgba(166, 75, 42, 0.18);
  box-shadow: 0 24px 50px rgba(89, 45, 25, 0.14);
}

.spotlight-search-head strong {
  display: block;
  font-size: 1.1rem;
}

.spotlight-search-head small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-search-grid,
.results-search-form.expanded {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr auto;
  gap: 12px;
  align-items: end;
}

.hero-search-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.hero-search-panel {
  margin: 0;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(245, 231, 215, 0.94)),
    radial-gradient(circle at top right, rgba(217, 119, 66, 0.12), transparent 30%);
  border: 1px solid rgba(166, 75, 42, 0.18);
  box-shadow: 0 28px 65px rgba(73, 36, 20, 0.18);
}

.hero-search-panel .spotlight-search-head strong {
  font-size: 1.45rem;
}

.hero-search-panel .hero-search-grid {
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.hero-search-panel .hero-search-submit {
  width: 100%;
  margin-top: 6px;
}

.hero-search-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-search-highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(166, 75, 42, 0.08);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.ghost-button,
.chip,
.secondary-button,
.hero-search-row input,
.hero-search-grid input,
.hero-search-grid select,
.results-search-form input,
.results-search-form select,
.hotel-form input,
.hotel-form select,
.hotel-form textarea {
  background: rgba(255, 250, 244, 0.72);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 14px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.hero-search-row input,
.hero-search-grid input,
.hero-search-grid select,
.results-search-form input,
.results-search-form select,
.hotel-form input,
.hotel-form select,
.hotel-form textarea {
  border-radius: 20px;
  font-weight: 500;
  width: 100%;
  cursor: text;
}

.hero-search-grid select,
.results-search-form select {
  cursor: pointer;
  appearance: none;
}

.hero-search-submit {
  min-width: 170px;
  margin-top: 0;
  height: 56px;
}

.hotel-form textarea {
  resize: vertical;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.hero-stats div {
  min-width: 0;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 16, 12, 0.48), rgba(22, 16, 12, 0.34));
  border: 1px solid rgba(255, 236, 218, 0.18);
  box-shadow: 0 16px 36px rgba(16, 10, 8, 0.16);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  color: #fff8f1;
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.hero-stats span {
  color: rgba(255, 237, 221, 0.78);
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.floating-review {
  position: relative;
  z-index: 1;
}

.live-pill,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fffaf4;
  font-size: 0.8rem;
  font-weight: 700;
}

.search-button {
  width: 100%;
  margin-top: 4px;
}

.listing-footer small {
  opacity: 0.82;
}

.floating-review {
  position: absolute;
  left: -26px;
  bottom: 26px;
  max-width: 260px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 248, 241, 0.9);
  border: 1px solid rgba(255, 248, 241, 0.34);
  box-shadow: 0 18px 40px rgba(31, 16, 10, 0.2);
  backdrop-filter: blur(12px);
}

.floating-review span {
  display: block;
  color: var(--accent-strong);
  font-weight: 800;
  margin-bottom: 8px;
}

.filter-bar,
.featured-section,
.listing-cta-strip,
.why-us {
  margin-top: 18px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.listing-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.toolbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.sort-control {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--muted);
}

.sort-control select {
  color: var(--text);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid var(--line);
  min-width: 180px;
}

.filter-header h2,
.why-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 11ch;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.chip.active {
  background: var(--text);
  color: #fffaf4;
}

.listing-section {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.results-meta,
.empty-state,
.detail-card,
.submission-feedback {
  margin-top: 24px;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.results-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.results-meta h2,
.detail-card h2,
.detail-copy h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.results-meta p:last-child {
  color: var(--muted);
  font-weight: 700;
}

.listing-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.listing-card.featured {
  grid-row: span 1;
}

.listing-image {
  height: 328px;
  padding: 20px;
  display: flex;
  align-items: start;
  background-size: cover;
  background-position: center;
}

.listing-image-link {
  display: block;
  text-decoration: none;
}

.listing-image-link:hover .listing-image {
  transform: scale(1.02);
}

.sunset-one {
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.02), rgba(10, 7, 5, 0.4)),
    linear-gradient(135deg, #f1b87c 0%, #c36b42 45%, #4f2a23 100%);
}

.sunset-two {
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.02), rgba(10, 7, 5, 0.4)),
    linear-gradient(135deg, #9bd7cb 0%, #3b8d92 48%, #153e4b 100%);
}

.sunset-three {
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.02), rgba(10, 7, 5, 0.42)),
    linear-gradient(135deg, #dfc18a 0%, #b16d4a 50%, #5b3429 100%);
}

.listing-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.listing-meta,
.listing-footer,
.feature-list {
  display: flex;
}

.listing-meta,
.listing-footer {
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.listing-meta {
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.9rem;
}

.listing-content h3 {
  margin: 10px 0 10px;
  font-size: 1.6rem;
  min-height: 3.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-title-link {
  color: var(--text);
  text-decoration: none;
}

.listing-title-link:hover {
  color: var(--accent-strong);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 112px;
  align-content: flex-start;
}

.listing-content p {
  min-height: 7.2rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.listing-footer strong {
  display: block;
  margin-top: 4px;
  font-size: 1.55rem;
}

.listing-footer {
  margin-top: auto;
}

.score-caption {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.inline-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.why-us {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why-grid article {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
}

.why-grid strong {
  font-size: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none;
}

.empty-state {
  text-align: center;
}

.empty-state h3 {
  margin-top: 0;
  font-size: 1.7rem;
}

.detail-page {
  padding-top: 28px;
}

.results-page,
.form-page,
.admin-page,
.account-page {
  padding-top: 28px;
}

.results-search-shell,
.form-shell,
.auth-shell,
.account-summary {
  margin-top: 18px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.results-search-shell h1,
.form-intro h1,
.auth-intro h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.results-search-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: end;
}

.form-intro p:last-child,
.auth-intro p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.auth-shell {
  max-width: 760px;
  margin-inline: auto;
}

.auth-tabs {
  display: flex;
  gap: 12px;
  margin: 22px 0 18px;
  flex-wrap: wrap;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.auth-form input {
  background: rgba(255, 250, 244, 0.72);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 14px 20px;
  border-radius: 20px;
  width: 100%;
}

.error-card {
  border-color: rgba(166, 75, 42, 0.35);
  background: rgba(255, 241, 236, 0.92);
}

.hotel-form {
  margin-top: 24px;
  grid-template-columns: 1fr 1fr;
}

.hotel-form label,
.sort-control {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--muted);
}

.hotel-form label.full-width,
.hotel-form button {
  grid-column: 1 / -1;
}

.submission-feedback h3,
.admin-card h3 {
  margin-top: 0;
}

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

.admin-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.admin-card-header,
.admin-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.admin-meta {
  margin: 18px 0;
  flex-wrap: wrap;
  color: var(--accent-strong);
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  height: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.status-pill.pending {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.status-pill.approved {
  background: rgba(31, 107, 87, 0.14);
  color: var(--success);
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.detail-image {
  min-height: 460px;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  align-items: start;
}

.detail-copy {
  padding: 18px 0;
}

.detail-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.04;
}

.title-with-score {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-score-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text);
  color: #fffaf4;
  font-weight: 800;
  font-size: 1.05rem;
}

.detail-lead {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.detail-meta-grid,
.detail-columns,
.detail-location,
.amenities-grid {
  display: grid;
  gap: 16px;
}

.detail-meta-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
}

.detail-meta-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
}

.detail-meta-grid span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.detail-meta-grid strong {
  font-size: 1.2rem;
}

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

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

.amenities-grid span {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.score-breakdown,
.review-list {
  display: grid;
  gap: 14px;
}

.score-breakdown div,
.review-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.82);
}

.score-breakdown span,
.review-card small,
.muted-copy {
  color: var(--muted);
}

.score-breakdown strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.review-form {
  display: grid;
  gap: 16px;
}

.review-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.82);
  font: inherit;
  color: var(--text);
}

.rating-group {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rating-group legend {
  font-weight: 700;
  color: var(--muted);
}

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

.star-option {
  position: relative;
}

.star-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.star-option span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.82);
  color: #b66b2c;
  font-weight: 800;
  cursor: pointer;
}

.star-option input:checked + span {
  background: var(--accent-soft);
  border-color: rgba(166, 75, 42, 0.2);
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sunset-four {
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.02), rgba(10, 7, 5, 0.42)),
    linear-gradient(135deg, #c2d9a3 0%, #6a8b57 48%, #304028 100%);
}

.sunset-five {
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.02), rgba(10, 7, 5, 0.42)),
    linear-gradient(135deg, #f4c9a1 0%, #d67b58 45%, #6b3c35 100%);
}

.sunset-six {
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.02), rgba(10, 7, 5, 0.42)),
    linear-gradient(135deg, #d5e0a6 0%, #a6b56f 45%, #596737 100%);
}

@media (max-width: 1080px) {
  .hero,
  .why-us,
  .listing-section,
  .detail-hero,
  .detail-columns,
  .results-search-shell,
  .admin-grid,
  .hero-search-grid,
  .results-search-form.expanded,
  .listing-cta-strip {
    grid-template-columns: 1fr;
  }

  .listing-card.featured {
    grid-row: span 1;
  }

  .hero-panel {
    min-height: auto;
  }

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

  .results-meta,
  .detail-meta-grid,
  .hotel-form {
    grid-template-columns: 1fr;
  }

  .results-meta {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    margin-top: 12px;
  }

  .topbar {
    position: sticky;
    top: 10px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 12px;
  }

  .mobile-menu-toggle,
  .mobile-auth-button {
    display: inline-flex;
  }

  .brand {
    justify-self: center;
    margin: 0 auto;
  }

  .brand-logo {
    height: 54px;
    max-width: 260px;
  }

  .topbar-side {
    justify-self: end;
    width: auto;
    gap: 0;
  }

  .topbar-cta,
  .auth-panel {
    display: none;
  }

  .topnav {
    display: none;
  }

  .mobile-nav-close {
    display: block;
  }

  .mobile-nav-drawer {
    display: block;
  }

  .mobile-nav-links {
    display: flex;
  }

  .mobile-nav-backdrop {
    display: none;
  }

  body.mobile-nav-open .mobile-nav-drawer {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    display: block;
  }

  .hero {
    margin-top: 14px;
    padding-top: 28px;
  }

  .hero h1 {
    max-width: none;
  }

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

  .hero-actions,
  .listing-meta,
  .listing-footer,
  .toolbar-actions,
  .admin-card-header,
  .hero-search-row,
  .results-search-form,
  .hero-search-grid,
  .results-search-form.expanded,
  .listing-cta-strip {
    flex-direction: column;
    align-items: start;
  }

  .hero-search-row,
  .results-search-form,
  .hero-search-grid,
  .results-search-form.expanded {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-card {
    padding: 22px;
    min-height: 420px;
  }

  .floating-review {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .detail-image {
    min-height: 320px;
  }

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