:root {
  color-scheme: light;
  --ink: #192625;
  --muted: #60716f;
  --line: #d9e2df;
  --paper: #ffffff;
  --soft: #f3f7f5;
  --green: #0d7a70;
  --coral: #e85d4f;
  --gold: #f4b63f;
  --blue: #3563e9;
  --shadow: 0 24px 64px rgba(17, 45, 41, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}

main {
  display: flex;
  flex-direction: column;
}

.hero { order: 1; }
#browse { order: 2; }
#how { order: 3; }
#area-updates { order: 4; }
#list { order: 5; }
#owners { order: 6; }

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

button:hover {
  transform: translateY(-1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(53, 99, 233, 0.38);
  outline-offset: 3px;
}

main section[id] {
  scroll-margin-top: 88px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 650;
}

.header-panel {
  display: contents;
}

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

.account-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.account-button,
.search-panel button,
.list-form button,
.reserve-button,
.interest-form button,
.auth-form button {
  border: 0;
  color: white;
  background: var(--green);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
}

.account-button,
.secondary-button {
  padding: 10px 16px;
}

.account-button {
  box-shadow: 0 8px 20px rgba(13, 122, 112, 0.2);
}

.dashboard-button {
  display: inline-flex;
  align-items: center;
}

.notification-button {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: white;
  cursor: pointer;
  font-weight: 900;
}

.notification-button::before {
  content: "";
  width: 16px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 0;
}

.notification-button::after {
  content: "";
  position: absolute;
  bottom: 9px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.notification-button > span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  color: transparent;
  bottom: 6px;
}

.notification-button.has-unread {
  color: white;
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: 0 8px 22px rgba(232, 93, 79, 0.28);
}

.notification-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid white;
  border-radius: 999px;
  color: white;
  background: #b42318;
  font-size: 0.72rem;
  line-height: 1;
}

.account-login-button {
  display: inline-flex;
  align-items: center;
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
}

.runtime-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px clamp(18px, 4vw, 56px);
  color: #075e54;
  background: #dff7f1;
  border-bottom: 1px solid #a7ded3;
  font-size: 0.82rem;
}

.runtime-status strong {
  white-space: nowrap;
}

.runtime-status.is-demo {
  color: #754c00;
  background: #fff3cf;
  border-bottom-color: #efd68b;
}

.runtime-status.is-checking {
  color: var(--muted);
  background: var(--soft);
  border-bottom-color: var(--line);
}

.runtime-inline {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-size: 0.88rem;
}

.runtime-inline strong {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 670px;
  padding: clamp(40px, 6vw, 80px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(13, 27, 28, 0.9) 0%, rgba(13, 27, 28, 0.66) 44%, rgba(13, 27, 28, 0.08) 72%),
    url("assets/juhuu-hero-v2.webp") center/cover;
  color: white;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 5.3vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero .hero-intro {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: white;
  background: rgba(13, 27, 28, 0.42);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 760;
}

.hero-trust li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 950;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-primary-link,
.hero-secondary-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-primary-link {
  color: white;
  background: var(--green);
}

.hero-primary-link:hover {
  text-decoration: none;
}

.hero-secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: rgba(18, 26, 35, 0.42);
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  gap: 16px;
  align-items: start;
  justify-content: end;
}

.search-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: white;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.search-panel h2,
.quick-list-form h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.search-panel-heading {
  display: grid;
  gap: 4px;
}

.search-panel-heading .eyebrow {
  margin: 0;
  color: var(--green);
}

.hero-listing-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(18, 26, 35, 0.72);
  backdrop-filter: blur(12px);
}

.hero-listing-prompt div {
  display: grid;
  gap: 3px;
}

.hero-listing-prompt strong {
  color: white;
}

.hero-listing-prompt span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-listing-prompt .open-listing-button {
  flex: 0 0 auto;
  border-color: white;
  color: var(--ink);
  background: white;
}

.compact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

input[type="file"] {
  padding: 9px 12px;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.search-panel button,
.list-form button,
.reserve-button,
.interest-form button,
.auth-form button {
  min-height: 48px;
  padding: 0 18px;
}

.search-panel button {
  box-shadow: 0 10px 24px rgba(13, 122, 112, 0.22);
}

.section,
.how,
.list-section,
.interest-section,
.pricing-section,
.dashboard-section {
  padding: clamp(54px, 6vw, 82px) clamp(18px, 4vw, 56px);
}

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

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
}

.result-count {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.category-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.browse-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -8px 0 22px;
  color: var(--muted);
  font-weight: 750;
}

.browse-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.browse-control-button,
.view-toggle button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.browse-control-button {
  border-radius: 999px;
}

.browse-control-button span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  min-height: 20px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--soft);
  font-size: .75rem;
}

.browse-control-button.is-active,
.view-toggle button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.view-toggle {
  display: inline-flex;
}

.view-toggle button:first-child {
  border-radius: 9px 0 0 9px;
}

.view-toggle button:last-child {
  margin-left: -1px;
  border-radius: 0 9px 9px 0;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-control > span {
  white-space: nowrap;
}

.sort-control select {
  min-height: 38px;
  padding: 8px 12px;
}

.tab {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  cursor: pointer;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.tab.active {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.item-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(25, 32, 44, 0.06);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease;
}

.item-card:hover,
.item-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(25, 32, 44, 0.14);
  outline: 0;
}

.item-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--line);
}

.card-image-wrap {
  position: relative;
}

.favorite-button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(23, 43, 41, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--coral);
  box-shadow: 0 5px 16px rgba(25, 32, 44, .14);
  cursor: pointer;
  font-size: 1.35rem;
}

.favorite-button:hover,
.favorite-button:focus-visible {
  transform: scale(1.05);
}

.item-card-content {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.card-topline,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.approval-badge {
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff3d8;
  color: #75520a;
  font-size: .7rem;
  font-weight: 850;
  text-align: right;
}

.approval-badge.is-instant {
  background: #e7f8ed;
  color: #176b38;
}

.card-distance {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.4;
}

.availability-badge {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 7px;
  font-size: .76rem;
  font-weight: 850;
}

.availability-badge.is-available {
  background: #e7f8ed;
  color: #176b38;
}

.availability-badge.is-unavailable {
  background: #fff0ee;
  color: #9d3128;
}

.card-costs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.card-costs div {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
}

.card-costs div + div {
  border-left: 1px solid var(--line);
}

.card-costs span,
.card-footer > span {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.35;
}

.card-costs strong {
  color: var(--ink);
  font-size: .92rem;
}

.card-footer {
  align-items: flex-end;
  padding-top: 2px;
}

.card-footer > span {
  max-width: 65%;
}

.compare-button {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  color: var(--green);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 850;
}

.compare-button.is-active {
  border-color: var(--green);
  background: #e9f6f2;
}

.compare-button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.empty-results {
  display: grid;
  gap: 5px;
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}

.empty-results strong {
  color: var(--ink);
}

.comparison-bar {
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid #bfd8d1;
  border-radius: 14px;
  background: #f3faf8;
}

.comparison-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.comparison-heading > div {
  display: grid;
  gap: 2px;
}

.comparison-heading span,
.comparison-grid article > span {
  color: var(--muted);
  font-size: .76rem;
}

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

.comparison-grid article {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.comparison-title {
  padding: 0 22px 0 0;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
}

.comparison-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 2px 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
}

.comparison-grid dl,
.comparison-grid dl div {
  margin: 0;
}

.comparison-grid dl {
  display: grid;
  gap: 4px;
}

.comparison-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .74rem;
}

.comparison-grid dt {
  color: var(--muted);
}

.comparison-grid dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.results-map {
  margin-bottom: 20px;
}

.map-surface {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #bad3cc;
  border-radius: 16px;
  background:
    linear-gradient(24deg, transparent 0 46%, rgba(255,255,255,.82) 47% 50%, transparent 51%),
    linear-gradient(-18deg, transparent 0 38%, rgba(255,255,255,.72) 39% 42%, transparent 43%),
    #dfeee9;
}

.map-surface::before,
.map-surface::after {
  content: "";
  position: absolute;
  border-radius: 48%;
  background: #c6e1ea;
  transform: rotate(-12deg);
}

.map-surface::before {
  width: 90px;
  height: 620px;
  left: 46%;
  top: -60px;
}

.map-surface::after {
  width: 42px;
  height: 600px;
  left: 49%;
  top: -40px;
  background: #dfeee9;
}

.map-road {
  position: absolute;
  z-index: 1;
  width: 120%;
  height: 8px;
  left: -10%;
  border: 2px solid white;
  border-width: 2px 0;
  background: #d5d8d1;
}

.map-road-one { top: 26%; transform: rotate(8deg); }
.map-road-two { top: 58%; transform: rotate(-7deg); }
.map-road-three { top: 78%; transform: rotate(15deg); }

.map-city-label {
  position: absolute;
  z-index: 2;
  left: 52%;
  top: 47%;
  color: rgba(31, 62, 58, .62);
  font-size: 1.35rem;
  font-weight: 900;
}

.map-marker {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 1px;
  max-width: 120px;
  padding: 7px 9px;
  border: 2px solid white;
  border-radius: 9px;
  background: var(--green);
  color: white;
  box-shadow: 0 6px 18px rgba(25, 32, 44, .2);
  cursor: pointer;
  transform: translate(-50%, -50%);
  text-align: left;
}

.map-marker:hover,
.map-marker:focus-visible {
  z-index: 5;
  transform: translate(-50%, -50%) scale(1.05);
}

.map-marker strong {
  font-size: .78rem;
}

.map-marker span {
  overflow: hidden;
  font-size: .64rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-privacy-note {
  margin: 8px 2px 0;
  color: var(--muted);
  font-size: .78rem;
}

.card-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-trust span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #07564f;
  background: #eefaf7;
  font-size: 0.75rem;
  font-weight: 800;
}

.item-card h3,
.detail-panel h3,
.steps h3 {
  margin: 0;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  color: var(--ink);
  font-weight: 850;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  color: #07564f;
  background: #dff5f1;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.detail-panel {
  width: min(1040px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: white;
  box-shadow: 0 28px 70px rgba(25, 32, 44, 0.28);
  overflow-y: auto;
}

.detail-panel::backdrop {
  background: rgba(18, 26, 35, 0.68);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.detail-main,
.booking-column {
  padding: 26px;
}

.booking-column {
  display: grid;
  align-content: start;
  gap: 16px;
  border-left: 1px solid var(--line);
  background: var(--soft);
}

.detail-close {
  position: sticky;
  z-index: 4;
  top: 14px;
  float: right;
  margin: 14px 14px -48px 0;
}

.detail-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.detail-stack {
  display: grid;
  gap: 13px;
}

.owner-trust-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #b8ded7;
  border-radius: 10px;
  background: #eefaf7;
}

.owner-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 900;
}

.owner-trust-card strong,
.owner-trust-card span {
  display: block;
}

.owner-trust-card div span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.owner-trust-card .trust-check {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: right;
}

.trust-explainer {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.trust-explainer summary {
  padding: 11px 12px;
  color: var(--green);
  cursor: pointer;
  font-size: .84rem;
  font-weight: 850;
}

.trust-explainer[open] summary {
  border-bottom: 1px solid var(--line);
}

.trust-explainer dl,
.trust-explainer dl div {
  margin: 0;
}

.trust-explainer dl {
  display: grid;
  padding: 3px 12px 8px;
}

.trust-explainer dl div {
  display: grid;
  grid-template-columns: minmax(105px, .28fr) minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.trust-explainer dl div:first-child {
  border-top: 0;
}

.trust-explainer dt {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 850;
}

.trust-explainer dd {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.detail-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.detail-line span:first-child {
  color: var(--muted);
}

.reserve-button {
  width: 100%;
}

.detail-actions {
  display: grid;
  gap: 10px;
}

.selected-dates {
  display: grid;
  gap: 4px;
  padding-right: 42px;
}

.selected-dates span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.selected-dates strong {
  font-size: 1.1rem;
}

.pickup-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7faf9;
}

.pickup-card div:last-child {
  display: grid;
  gap: 4px;
}

.pickup-card span,
.listing-policy-summary span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.pickup-map {
  position: relative;
  min-height: 76px;
  overflow: hidden;
  border-radius: 9px;
  background:
    linear-gradient(32deg, transparent 46%, rgba(255,255,255,.9) 47% 53%, transparent 54%),
    linear-gradient(-28deg, transparent 44%, rgba(255,255,255,.78) 45% 51%, transparent 52%),
    #dff1ec;
}

.pickup-map span {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 27px;
  left: 46px;
  border: 5px solid var(--coral);
  border-radius: 50% 50% 50% 0;
  background: white;
  transform: rotate(-45deg);
}

.listing-policy-overview {
  display: grid;
  gap: 12px;
}

.listing-policy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.listing-policy-summary div {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 12px;
  border: 1px solid #cfe0da;
  border-radius: 12px;
  background: #f4faf8;
}

.listing-policy-summary strong {
  color: var(--green);
  font-size: .86rem;
  line-height: 1.3;
}

.listing-rental-policy {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: white;
}

.listing-rental-policy summary {
  cursor: pointer;
  color: var(--green);
  font-size: .9rem;
  font-weight: 900;
}

.listing-rental-policy[open] summary {
  margin-bottom: 7px;
}

.listing-policy-intro {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}

.listing-policy-stages {
  display: grid;
  gap: 0;
}

.listing-policy-stage {
  display: grid;
  grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(151, 113, 22, .18);
}

.listing-policy-stage strong,
.listing-policy-stage span {
  font-size: .78rem;
  line-height: 1.42;
}

.listing-policy-stage span {
  color: var(--muted);
}

.calendar-disclosure {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.calendar-disclosure summary {
  padding: 13px 14px;
  color: var(--green);
  cursor: pointer;
  font-weight: 800;
}

.calendar-disclosure .listing-calendar {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.message-owner-button {
  width: 100%;
  min-height: 48px;
}

.empty-state {
  display: grid;
  min-height: 310px;
  place-content: center;
  text-align: center;
  color: var(--muted);
}

.empty-state h3 {
  color: var(--ink);
}

.how {
  background: #eaf4f1;
}

.how-heading {
  max-width: 720px;
}

.how-heading > p:last-child {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

.steps article {
  padding: 24px;
  border: 1px solid #cfe0db;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(23, 60, 55, 0.06);
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 16px;
  color: white;
  background: var(--coral);
  border-radius: 50%;
  font-weight: 900;
}

.steps p,
.list-section p,
.interest-section p,
.pricing-section p,
.dashboard-section p,
.modal-copy {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-section {
  background: white;
}

.owner-zone {
  border-top: 8px solid var(--green);
  background: #f2f8f6;
}

.secondary-journey {
  border-top: 1px solid var(--line);
  background: white;
}

.secondary-journey > summary {
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--green);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
  list-style-position: inside;
}

.secondary-journey[open] > summary {
  border-bottom: 1px solid var(--line);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.plan-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.plan-card.featured {
  border-color: var(--green);
  background: #eefaf7;
}

.plan-card h3,
.plan-card p {
  margin: 0;
}

.plan-price {
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
}

.plan-currency {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.plan-card button {
  min-height: 42px;
  border: 0;
  color: white;
  background: var(--green);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.fee-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 24px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.fee-table {
  display: grid;
  gap: 10px;
}

.fee-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) minmax(160px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.fee-rate {
  color: var(--green);
  font-weight: 900;
}

.interest-section,
.list-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.interest-section {
  background: #fff8ec;
}

.list-form,
.interest-form,
.auth-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.quick-list-form {
  box-shadow: var(--shadow);
}

.quick-list-form textarea {
  min-height: 86px;
}

.jump-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: fit-content;
  padding: 0 18px;
  color: white;
  border: 0;
  background: var(--green);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.wide,
.list-form button,
.interest-form button,
.interest-form .form-message {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 750;
}

.form-message.error {
  color: #b42318;
}

.is-hidden {
  display: none !important;
}

.field-hint {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.photo-standard {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #b8ded7;
  border-radius: 8px;
  color: var(--muted);
  background: #eefaf7;
  font-size: 0.9rem;
  line-height: 1.45;
}

.photo-standard strong {
  color: var(--green);
}

.dashboard-section {
  background: white;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.dashboard-route-nav {
  display: flex;
  gap: 8px;
  margin: -4px 0 16px;
}

.dashboard-route-nav a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
}

.dashboard-route-nav a[aria-current="page"] {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(232, 93, 79, 0.08);
}

.dashboard-grid article {
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.activity-item.route-highlight {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 93, 79, 0.18);
}

.dashboard-grid h3 {
  margin: 0 0 14px;
}

.test-clock-panel {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid rgba(47, 125, 96, 0.35);
  border-radius: 8px;
  background: rgba(47, 125, 96, 0.08);
}

.test-clock-panel > div {
  flex: 1 1 230px;
}

.test-clock-panel strong,
.test-clock-panel span {
  display: block;
}

.test-clock-panel span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.test-clock-panel label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.test-clock-panel input {
  min-height: 38px;
}

.activity-list {
  display: grid;
  gap: 10px;
}

.activity-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.activity-button {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.activity-button.unread {
  border-color: rgba(232, 93, 79, 0.55);
  box-shadow: inset 4px 0 0 var(--coral);
}

.activity-item strong {
  display: block;
  margin-bottom: 4px;
}

.activity-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.activity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.activity-actions button,
.activity-actions .secondary-button {
  min-height: 34px;
  padding: 8px 10px;
  font-size: 0.84rem;
}

.review-button {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.review-complete {
  align-self: center;
  color: var(--green) !important;
  font-weight: 800;
}

.danger-button {
  color: #a71515;
  border-color: rgba(167, 21, 21, 0.22);
  background: #fff7f4;
}

.account-danger-copy {
  margin: 0;
  padding: 12px;
  color: #7a271a;
  background: #fff4ed;
  border: 1px solid rgba(180, 35, 24, 0.2);
  border-radius: 8px;
  line-height: 1.5;
}

.auth-form > .danger-button {
  color: #fff;
  border-color: #a71515;
  background: #a71515;
}

.auth-form > .danger-button:hover {
  background: #861010;
}

.status-chip {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--green);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.booking-stage-summary {
  margin-top: 12px;
  padding: 11px 12px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.booking-responsibility {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 2px 10px;
  align-items: baseline;
  margin-top: 10px;
  padding: 9px 10px;
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  background: var(--mint);
}

.booking-responsibility > span:first-child {
  grid-column: 1 / -1;
  color: var(--green);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-responsibility strong {
  margin: 0;
  color: var(--ink);
  font-size: .88rem;
}

.booking-responsibility > span:last-child {
  font-size: .82rem;
}

.booking-next-action-summary {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 125, 96, .28);
  border-radius: 8px;
  background: white;
}

.booking-next-action-summary > span,
.booking-next-action-summary > strong {
  display: block;
}

.booking-next-action-summary > span {
  margin-bottom: 3px;
  color: var(--green);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-next-action-summary > strong {
  margin: 0;
  font-size: .9rem;
}

.booking-next-action-summary p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.4;
}

.booking-next-action-summary.is-waiting {
  border-color: #d9bf79;
  background: #fffaf0;
}

.booking-next-action-summary.is-waiting > span {
  color: #76540b;
}

.booking-next-action-summary.is-complete {
  border-color: var(--line);
  background: var(--soft);
}

.booking-next-action-summary.is-complete > span {
  color: var(--muted);
}

.booking-primary-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 18px;
  align-items: center;
  margin: 20px 28px 0;
  padding: 18px 20px;
  border: 2px solid var(--green);
  border-radius: 14px;
  background: #eefaf7;
  box-shadow: 0 10px 24px rgba(26, 82, 70, .1);
}

.booking-primary-action > span,
.booking-primary-action h3,
.booking-primary-action p {
  grid-column: 1;
}

.booking-primary-action > span {
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.booking-primary-action h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  line-height: 1.3;
}

.booking-primary-action p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

.booking-primary-action > button {
  grid-column: 2;
  grid-row: 1 / span 3;
  min-width: 150px;
}

.booking-primary-action.is-waiting {
  border-color: #d9bf79;
  background: #fffaf0;
}

.booking-primary-action.is-waiting > span {
  color: #76540b;
}

.booking-primary-action.is-complete {
  border-color: var(--line);
  background: var(--soft);
  box-shadow: none;
}

.booking-primary-action.is-complete > span {
  color: var(--muted);
}

.booking-primary-action.is-compact {
  margin: 10px 0 0;
  padding: 13px 14px;
  border-width: 1px;
  border-radius: 9px;
  box-shadow: none;
}

.booking-primary-action.is-compact h3 {
  font-size: .96rem;
}

.booking-primary-action.is-compact > button {
  min-width: 128px;
  padding: 9px 11px;
}

.booking-deadline {
  margin-top: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(47, 125, 96, .3);
  border-radius: 8px;
  background: #f7fcf9;
}

.booking-deadline > span {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-deadline > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.booking-deadline strong,
.booking-deadline time {
  font-size: .86rem;
}

.booking-deadline time {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.booking-deadline p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.4;
}

.booking-deadline > small {
  display: block;
  margin-top: 5px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 800;
}

.booking-deadline.is-overdue > small {
  color: #a71515;
}

.booking-deadline.is-overdue {
  border-color: rgba(167, 21, 21, .3);
  background: #fff7f4;
}

.booking-deadline.is-overdue > span,
.booking-deadline.is-overdue time {
  color: #a71515;
}

.booking-deadline.is-none {
  border-color: var(--line);
  background: var(--soft);
}

.booking-deadline.is-none > span,
.booking-deadline.is-none time {
  color: var(--muted);
}

.booking-financial-state {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.booking-financial-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.booking-financial-heading > span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-financial-heading > strong {
  margin: 0;
  color: var(--ink);
  font-size: .84rem;
  text-align: right;
}

.booking-financial-state.is-authorized .booking-financial-heading > strong {
  color: #76540b;
}

.booking-financial-state.is-complete .booking-financial-heading > strong {
  color: var(--green);
}

.booking-financial-state > p {
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.4;
}

.booking-financial-state dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.booking-financial-state dl > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
}

.booking-financial-state dt,
.booking-financial-state dd {
  font-size: .78rem;
}

.booking-financial-state dt {
  color: var(--muted);
}

.booking-financial-state dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.booking-cancellation {
  margin-top: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.booking-policy-snapshot {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.booking-policy-snapshot summary {
  cursor: pointer;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
}

.booking-policy-snapshot p,
.booking-policy-snapshot ul {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.4;
}

.booking-policy-snapshot p {
  margin: 8px 0 0;
}

.booking-policy-snapshot ul {
  margin: 7px 0 0;
  padding-left: 18px;
}

.booking-cancellation > span,
.booking-cancellation summary {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.booking-cancellation summary {
  cursor: pointer;
}

.booking-cancellation[open] summary {
  margin-bottom: 9px;
}

.booking-cancellation-copy > strong {
  display: block;
  margin: 6px 0 3px;
  font-size: .86rem;
}

.booking-cancellation-copy p,
.booking-cancellation-copy ul {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.4;
}

.booking-cancellation-copy p {
  margin: 0;
}

.booking-cancellation-copy ul {
  margin: 7px 0 0;
  padding-left: 18px;
}

.booking-cancellation.is-warning {
  border-color: #d9bf79;
  background: #fffaf0;
}

.booking-cancellation.is-locked {
  border-color: rgba(167, 21, 21, .25);
  background: #fff7f4;
}

.booking-cancellation.is-closed {
  background: var(--soft);
}

.booking-message-preview {
  margin-top: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.booking-message-preview.has-unread {
  border-color: rgba(232, 93, 79, .5);
  box-shadow: inset 3px 0 0 var(--coral);
}

.booking-message-preview-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.booking-message-preview-heading > strong {
  margin: 0;
  font-size: .86rem;
}

.booking-message-preview-heading > span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}

.booking-message-preview.has-unread .booking-message-preview-heading > span {
  color: var(--coral);
}

.booking-message-preview > p {
  display: -webkit-box;
  margin: 7px 0 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.booking-message-preview > p strong {
  display: inline;
  margin: 0;
  color: var(--ink);
}

.booking-message-preview > time {
  display: block;
  color: var(--muted);
  font-size: .7rem;
}

.booking-message-preview > button {
  width: 100%;
  margin-top: 9px;
}

.booking-support {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(232, 93, 79, .25);
  border-radius: 8px;
  background: #fffaf8;
}

.booking-support > span,
.booking-support > strong {
  display: block;
}

.booking-support > span {
  color: #9b3026;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-support > strong {
  margin-top: 3px;
  font-size: .88rem;
}

.booking-support > p,
.booking-support > small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.booking-support > p {
  margin: 5px 0 9px;
}

.booking-support > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-support > div button {
  min-height: 34px;
  padding: 8px 10px;
  font-size: .8rem;
}

.booking-support > small {
  display: block;
  margin-top: 9px;
}

.booking-report-button {
  color: #9b3026;
}

.listing-support {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(232, 93, 79, .25);
  border-radius: 8px;
  background: #fffaf8;
}

.listing-support > span,
.listing-support > strong {
  display: block;
}

.listing-support > span {
  color: #9b3026;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.listing-support > strong {
  margin-top: 3px;
  font-size: .88rem;
}

.listing-support > p,
.listing-support > small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.listing-support > p {
  margin: 5px 0 9px;
}

.listing-support > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.listing-support > div button {
  min-height: 34px;
  padding: 8px 10px;
  font-size: .8rem;
}

.listing-support > small {
  display: block;
  margin-top: 9px;
}

.booking-stage-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.booking-stage-heading strong {
  margin: 0;
  font-size: .84rem;
}

.booking-stage-heading span {
  font-size: .75rem;
}

.booking-stage-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-stage-track:has(li:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-stage-track li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  text-align: center;
}

.booking-stage-track li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line);
}

.booking-stage-track li.complete:not(:last-child)::after {
  background: var(--green);
}

.booking-stage-dot {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: white;
}

.booking-stage-track li.complete .booking-stage-dot,
.booking-stage-track li.current .booking-stage-dot {
  border-color: var(--green);
  background: var(--green);
}

.booking-stage-track li.current .booking-stage-dot {
  box-shadow: 0 0 0 3px var(--mint);
}

.booking-stage-label {
  overflow-wrap: anywhere;
  font-size: .7rem !important;
  line-height: 1.2;
}

.booking-stage-track li.current .booking-stage-label {
  color: var(--green);
  font-weight: 800;
}

.profile-line {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.message-modal {
  width: min(640px, calc(100vw - 28px));
}

.modal.dashboard-modal {
  width: min(980px, calc(100vw - 28px));
}

.modal.booking-modal {
  width: min(1040px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  overflow: auto;
}

.booking-detail-shell {
  min-height: 560px;
}

.booking-detail-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 26px 28px 22px;
  color: white;
  background: var(--green);
}

.booking-detail-header .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.booking-detail-header h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.booking-detail-header p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.booking-detail-header .icon-button {
  color: var(--green);
  background: white;
}

.booking-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 22px;
  padding: 24px 28px 28px;
}

.booking-detail-main,
.booking-detail-aside {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.booking-summary-card,
.booking-info-card,
.booking-next-step {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.booking-summary-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.booking-summary-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--soft);
}

.booking-summary-card h3,
.booking-info-card h3,
.booking-next-step h3 {
  margin: 0 0 7px;
}

.booking-summary-card p,
.booking-next-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.booking-summary-card .status-chip {
  margin-top: 10px;
}

.booking-timeline {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.booking-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  min-height: 62px;
}

.booking-timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  bottom: -3px;
  left: 11px;
  width: 2px;
  background: var(--line);
}

.booking-timeline-step.complete:not(:last-child)::after {
  background: var(--green);
}

.booking-timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: white;
  font-size: .72rem;
  font-weight: 900;
}

.booking-timeline-step.complete .booking-timeline-marker,
.booking-timeline-step.current .booking-timeline-marker {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.booking-timeline-step.current .booking-timeline-marker {
  box-shadow: 0 0 0 4px var(--mint);
}

.booking-timeline-copy strong,
.booking-timeline-copy span {
  display: block;
}

.booking-history-disclosure {
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.booking-history-disclosure summary,
.booking-more-actions summary {
  padding: 12px 0 2px;
  color: var(--green);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 850;
}

.booking-more-actions {
  padding: 0 14px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.booking-more-actions summary {
  padding: 12px 0;
}

.booking-timeline-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}

.booking-facts {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
}

.booking-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.booking-facts div:last-child {
  border-bottom: 0;
}

.booking-facts dt {
  color: var(--muted);
}

.booking-facts dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.booking-next-step {
  border-color: #b8ded7;
  background: #eefaf7;
}

.booking-detail-actions .activity-actions {
  margin: 0;
}

.booking-detail-actions button {
  flex: 1 1 150px;
}

.booking-message-card {
  display: grid;
  gap: 14px;
}

.booking-message-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.booking-message-heading h3,
.booking-message-heading p {
  margin: 0;
}

.booking-message-heading p {
  margin-top: 3px;
  color: var(--muted);
  font-size: .88rem;
}

.booking-message-heading > span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green);
  background: var(--mint);
  font-size: .75rem;
  font-weight: 850;
  white-space: nowrap;
}

.booking-inline-thread {
  display: grid;
  gap: 9px;
  max-height: 320px;
  overflow-y: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.booking-message {
  justify-self: start;
  max-width: 82%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px 10px 10px 3px;
  background: white;
}

.booking-message.mine {
  justify-self: end;
  color: white;
  border-color: var(--green);
  border-radius: 10px 10px 3px 10px;
  background: var(--green);
}

.booking-message p {
  margin: 0 0 5px;
  line-height: 1.45;
}

.booking-message span {
  color: var(--muted);
  font-size: .75rem;
}

.booking-message.mine span {
  color: rgba(255, 255, 255, .72);
}

.booking-message-empty {
  display: grid;
  gap: 4px;
  padding: 12px;
  color: var(--muted);
  text-align: center;
}

.booking-message-empty strong {
  color: var(--ink);
}

.booking-message-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.booking-message-form textarea {
  min-height: 76px;
  resize: vertical;
}

.booking-message-form button {
  min-height: 44px;
}

.booking-back-link {
  justify-self: start;
}

.booking-not-found {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.dashboard-drawer {
  display: grid;
  gap: 18px;
  padding: 22px;
}

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

.dashboard-grid-compact article {
  min-height: 180px;
}

.messages-card {
  grid-column: 1 / -1;
  border-color: rgba(232, 93, 79, 0.2);
}

.dashboard-sign-out {
  justify-self: end;
}

.message-thread {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow-y: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.message-bubble {
  max-width: 82%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.message-bubble.mine {
  justify-self: end;
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.message-bubble p {
  margin: 0 0 5px;
  line-height: 1.45;
}

.message-bubble span {
  color: var(--muted);
  font-size: 0.76rem;
}

.message-bubble.mine span {
  color: rgba(255, 255, 255, 0.78);
}

.empty-state.compact {
  min-height: 140px;
}

.plan-notice {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 750;
}

.modal {
  width: min(520px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(18, 26, 35, 0.62);
}

.listing-modal {
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow-y: auto;
}

.listing-modal .list-form {
  padding: 22px;
  border: 0;
  box-shadow: none;
}

.listing-modal .modal-heading {
  grid-column: 1 / -1;
}

.listing-modal .modal-heading .eyebrow {
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 0.8rem;
  line-height: 1.2;
}

.listing-modal .field-hint {
  max-width: none;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.listing-modal .form-message {
  max-width: none;
  color: var(--green);
  font-size: 0.92rem;
  line-height: 1.4;
}

.listing-modal .form-message.error {
  color: #b42318;
}

.listing-modal .icon-button {
  grid-column: auto;
  min-height: 34px;
  padding: 0;
  color: var(--ink);
  background: white;
}

.auth-form {
  grid-template-columns: 1fr;
  padding: 22px;
}

.modal-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.modal-heading h2 {
  font-size: 1.7rem;
}

.icon-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.auth-form .icon-button {
  min-height: 34px;
  padding: 0;
  color: var(--ink);
  background: white;
}

.auth-form .secondary-button {
  color: var(--ink);
  background: white;
}

.auth-form.is-login {
  gap: 12px;
}

.auth-form.is-login #password-reset-button {
  min-height: auto;
  padding: 4px 0;
  border: 0;
  color: var(--green);
  background: transparent;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.checkout-box label span {
  color: var(--muted);
}

.listing-calendar {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.calendar-heading,
.calendar-toolbar,
.calendar-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calendar-heading h4 {
  margin: 2px 0 0;
  font-size: 1.15rem;
}

.calendar-heading > strong {
  color: var(--green);
  font-size: 0.84rem;
  text-align: right;
}

.availability-calendar {
  display: grid;
  gap: 10px;
}

.calendar-toolbar strong {
  font-size: 1rem;
}

.calendar-nav {
  display: grid;
  width: 34px;
  min-height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
  border-radius: 50%;
  font-size: 1.45rem;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays span {
  padding: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
}

.calendar-day {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
}

button.calendar-day:not(:disabled):hover,
button.calendar-day:not(:disabled):focus-visible {
  z-index: 1;
  color: white;
  background: var(--green);
  border-radius: 50%;
  outline: 2px solid white;
  box-shadow: 0 0 0 3px var(--green);
}

.calendar-day.outside,
.calendar-day.past {
  color: #a7adb7;
}

.calendar-day.booked {
  color: #8a3430;
  background: repeating-linear-gradient(-45deg, #f8d7d4, #f8d7d4 4px, #fff0ee 4px, #fff0ee 8px);
  text-decoration: line-through;
}

.calendar-day.pending {
  color: #79510b;
  background: #fff0c2;
}

.calendar-day.in-range {
  color: #07564f;
  background: #dff5f1;
}

.calendar-day.range-start,
.calendar-day.range-end {
  color: white;
  background: var(--green);
  border-radius: 50%;
}

.calendar-day:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.calendar-legend {
  justify-content: flex-start;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.72rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.legend-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}

.legend-dot.booked {
  border-color: #e5aaa4;
  background: #f8d7d4;
}

.legend-dot.pending {
  border-color: #e5bf57;
  background: #fff0c2;
}

.calendar-help,
.calendar-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.owner-calendar-card {
  grid-column: 1 / -1;
}

.owner-calendar {
  display: grid;
  gap: 12px;
}

.owner-calendar-picker {
  display: grid;
  gap: 5px;
}

.owner-calendar-picker span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.owner-calendar .availability-calendar {
  max-width: 580px;
}

.owner-calendar .calendar-day {
  min-height: 44px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
}

.hold-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.hold-line strong {
  color: var(--ink);
}

.owner-note {
  padding: 10px;
  border-radius: 8px;
  background: #fff3cd;
  color: #7a4b00;
  font-weight: 750;
}

.reserve-button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 4px;
}

.text-button {
  min-height: auto;
  padding: 2px 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-button:hover {
  color: #a71515;
  transform: none;
}

.consent-field {
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.consent-field.is-hidden {
  display: none !important;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent-field a,
.field-hint a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-captcha {
  display: grid;
  gap: 6px;
  min-height: 74px;
}

.auth-captcha.is-hidden {
  display: none;
}

.auth-captcha .field-hint {
  margin: 0;
}

.report-modal {
  width: min(620px, calc(100vw - 28px));
}

.report-form {
  grid-template-columns: 1fr;
}

.report-form textarea {
  min-height: 140px;
}

.review-modal {
  width: min(580px, calc(100vw - 28px));
}

.review-form {
  grid-template-columns: 1fr;
}

.review-form textarea {
  min-height: 120px;
}

.star-rating {
  margin: 0;
  padding: 0;
  border: 0;
}

.star-rating legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.star-options {
  display: flex;
  width: fit-content;
  flex-direction: row;
  direction: rtl;
  gap: 4px;
}

.star-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-options label {
  color: #c7c9c5;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  transition: color 120ms ease, transform 120ms ease;
}

.star-options label:hover,
.star-options label:hover ~ label,
.star-options input:checked ~ label {
  color: #f2a900;
}

.star-options input:focus-visible + label {
  outline: 3px solid rgba(22, 101, 52, 0.28);
  outline-offset: 3px;
  border-radius: 4px;
}

.listing-reviews {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.listing-reviews h4,
.listing-reviews p {
  margin: 0;
}

.review-summary {
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.review-summary strong {
  color: #d18b00;
  letter-spacing: 1px;
}

.review-summary p,
.review-empty {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.report-target {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.report-target span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #17211f;
}

.site-footer > div {
  max-width: 560px;
}

.site-footer p {
  margin: 10px 0 0;
  line-height: 1.5;
}

.footer-brand {
  width: fit-content;
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: white;
  font-weight: 750;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-modal {
  width: min(1240px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
}

.admin-console {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.admin-heading-actions,
.admin-toolbar,
.admin-tabs,
.admin-row-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-heading-actions {
  align-items: flex-start;
}

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

.admin-metric {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.admin-metric strong {
  color: var(--green);
  font-size: 1.55rem;
}

.admin-metric span,
.admin-secondary {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-toolbar {
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
}

.admin-tabs {
  overflow-x: auto;
}

.admin-tab {
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}

.admin-tab.is-active {
  color: var(--green);
  border-bottom-color: var(--coral);
}

.admin-search {
  min-width: min(320px, 100%);
  padding-bottom: 8px;
}

.admin-search input,
.admin-table input,
.admin-table select {
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.admin-panel {
  min-height: 260px;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

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

.admin-table th {
  color: var(--muted);
  background: var(--soft);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-table tbody tr:hover {
  background: rgba(223, 245, 237, 0.35);
}

.admin-primary {
  display: block;
  margin-bottom: 3px;
  font-weight: 850;
}

.admin-row-actions {
  align-items: stretch;
  flex-wrap: wrap;
}

.admin-row-actions input {
  min-width: 180px;
  flex: 1;
}

.admin-action-button {
  min-height: 38px;
  padding: 8px 12px;
  white-space: nowrap;
}

.status-chip.is-warning {
  color: #7a4b00;
  background: #fff3cd;
}

.status-chip.is-danger {
  color: #8d2f25;
  background: #fde3df;
}

.admin-empty {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.admin-loading {
  opacity: 0.6;
  pointer-events: none;
}

.admin-console button:disabled,
.admin-console input:disabled,
.admin-console select:disabled {
  cursor: wait;
  opacity: 0.55;
}

@media (max-width: 920px) {
  .hero,
  .list-section,
  .interest-section,
  .fee-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

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

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

  .booking-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

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

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

@media (max-width: 680px) {
  .booking-primary-action,
  .booking-primary-action.is-compact {
    grid-template-columns: 1fr;
  }

  .booking-primary-action {
    margin: 16px 18px 0;
  }

  .booking-primary-action > button,
  .booking-primary-action.is-compact > button {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-top: 6px;
  }

  .trust-explainer dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .browse-actions,
  .view-toggle {
    width: 100%;
  }

  .view-toggle button {
    flex: 1;
  }

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

  .map-surface {
    min-height: 440px;
  }

  .listing-policy-summary {
    grid-template-columns: 1fr;
  }

  .listing-policy-stage {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .browse-toolbar,
  .sort-control {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-control select {
    width: 100%;
  }

  .detail-main,
  .booking-column {
    padding: 18px;
  }

  .booking-detail-header,
  .booking-detail-body {
    padding: 20px;
  }

  .booking-summary-card {
    grid-template-columns: 68px 1fr;
  }

  .booking-summary-card img {
    width: 68px;
    height: 68px;
  }

  .booking-message-heading,
  .booking-message-form {
    grid-template-columns: 1fr;
  }

  .booking-message-heading {
    display: grid;
  }

  .booking-message-heading > span {
    width: fit-content;
  }

  .booking-message-form button {
    width: 100%;
  }

  .pickup-card {
    grid-template-columns: 86px 1fr;
  }

  .runtime-status {
    justify-content: flex-start;
    padding-block: 6px;
  }

  .runtime-status span {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(13, 27, 28, 0.86) 0%, rgba(13, 27, 28, 0.66) 48%, rgba(13, 27, 28, 0.4) 100%),
      url("assets/juhuu-hero-v2-960.webp") center/cover;
  }

  .topbar {
    gap: 12px;
    padding: 12px 18px;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: white;
    cursor: pointer;
    font-weight: 800;
  }

  .mobile-menu-button[aria-expanded="true"] {
    color: white;
    border-color: var(--green);
    background: var(--green);
  }

  .header-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 61px);
    overflow-y: auto;
    padding: 10px 18px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(25, 32, 44, 0.14);
  }

  .header-panel.is-open {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    gap: 0;
    font-size: 1rem;
  }

  .nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .hero {
    gap: 30px;
    padding-block: 38px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-cta-row > * {
    flex: 1 1 150px;
  }

  .hero-trust {
    gap: 7px;
    margin-top: 20px;
  }

  .hero-trust li {
    padding: 6px 9px;
    font-size: 0.74rem;
  }

  .search-panel {
    padding: 18px;
    border-radius: 14px;
  }

  .hero-listing-prompt {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-listing-prompt .open-listing-button {
    width: 100%;
  }

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

  .list-form,
  .interest-form {
    grid-template-columns: 1fr;
  }

  .compact-fields {
    grid-template-columns: 1fr;
  }

  .account-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
  }

  .account-actions .account-status {
    grid-column: 1 / -1;
  }

  .account-actions > button {
    width: 100%;
    justify-content: center;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .dashboard-grid,
  .fee-row {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 88%);
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .plan-card {
    scroll-snap-align: start;
  }

  .admin-console {
    padding: 18px;
  }

  .admin-heading,
  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-heading-actions {
    justify-content: space-between;
  }

  .admin-search {
    width: 100%;
  }

  .admin-search input {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
