:root {
  --title-font: "Solitude", Georgia, "Times New Roman", serif;
}

@font-face {
  font-family: "Solitude";
  src: url("/assets/fonts/solitude.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #17221c;
  --muted: #6f786f;
  --line: rgba(23, 34, 28, 0.12);
  --bg: #ffffff;
  --paper: #f8f6f1;
  --panel: #ffffff;
  --sage: #688271;
  --sage-soft: #869b8e;
  --gold: #9b8557;
  --shadow: rgba(37, 48, 39, 0.14);
  --review-scroll-duration: 126s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.lux-reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.lux-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.lux-reveal:nth-child(2n).is-visible {
  transition-duration: 1050ms, 1250ms, 1250ms;
}

.lux-reveal.lux-word-reveal,
.lux-reveal.lux-has-word-reveal,
.lux-reveal:has(.lux-word-reveal) {
  opacity: 1;
  filter: none;
  transform: none;
}

.lux-word-reveal {
  text-align: inherit;
  transform: none;
}

.hero-copy.lux-reveal.lux-has-word-reveal,
.hero-copy.lux-reveal.lux-has-word-reveal.is-visible {
  transform: translateX(-50%);
}

.lux-word {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, 0.32em, 0) scale(0.985) rotate(0.001deg);
  transition:
    opacity 1120ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1320ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--word-delay, 0ms));
  will-change: opacity, filter, transform;
}

.lux-reveal.is-visible .lux-word,
.lux-reveal.is-visible.lux-word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0.001deg);
}

.lux-word:nth-child(2n) {
  transform: translate3d(0, 0.26em, 0) scale(0.99) rotate(0.001deg);
}

.site-shell {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.hero-panel {
  min-height: 880px;
  height: 92svh;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.42) 67%, rgba(255, 255, 255, 0.88) 84%, #ffffff 96%, #ffffff 100%),
    url("/assets/hero-image-2.png");
  background-size: cover;
  background-position: center center;
}

.nav,
.listing-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
}

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

.brand img {
  width: 154px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.16));
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  justify-content: center;
}

.nav-links a,
.nav-actions a {
  position: relative;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(14px);
  background: transparent;
  transition: color 180ms ease, opacity 180ms ease, background 180ms ease;
}

.nav-links a::after,
.nav-actions a:not(.solid)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: rgba(153, 182, 158, 0.9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-actions .solid {
  color: #ffffff;
  background: rgba(15, 34, 25, 0.74);
  padding-inline: 22px;
}

.nav-links a:hover,
.nav-actions a:hover {
  color: #c7dccb;
}

.nav-links a:hover::after,
.nav-actions a:not(.solid):hover::after,
.nav-links a:focus-visible::after,
.nav-actions a:not(.solid):focus-visible::after {
  transform: scaleX(1);
}

.nav-links a:focus-visible,
.nav-actions a:focus-visible {
  color: #c7dccb;
  outline: none;
}

.ghost-btn:hover,
.outline-btn:hover,
.property-info a:hover {
  border-color: rgba(155, 133, 87, 0.52);
  background: rgba(255, 255, 255, 0.8);
}

.nav-actions .solid:hover,
.nav-actions .solid:focus-visible,
.primary-btn:hover {
  color: #ffffff;
  background: rgba(64, 99, 74, 0.88);
}

.hero-copy {
  width: min(520px, calc(100% - 48px));
  position: absolute;
  left: 50%;
  top: 16%;
  transform: translateX(-50%);
  text-align: center;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.24);
}

.eyebrow,
.section-kicker {
  display: none;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--title-font);
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: #ffffff;
  font-family: var(--title-font);
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(18, 30, 22, 0.26);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-proof-avatars {
  display: flex;
  align-items: center;
  padding-left: 4px;
}

.hero-proof-avatars img {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  object-fit: cover;
  background: #f4f2ec;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.hero-proof-avatars img + img {
  margin-left: -13px;
}

.hero-proof-copy {
  display: grid;
  gap: 1px;
  color: #ffffff;
  font-family: var(--title-font);
  text-align: left;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.hero-proof-copy strong {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.hero-proof-copy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.05;
}

.hero-copy p {
  width: min(380px, 100%);
  color: rgba(23, 34, 28, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.primary-btn,
.ghost-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-btn:hover,
.ghost-btn:hover,
.outline-btn:hover {
  transform: translateY(-1px);
}

.primary-btn {
  color: #ffffff;
  background: rgba(10, 12, 11, 0.92);
}

.ghost-btn,
.outline-btn {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
}

.reviews-section,
.split-section,
.managed-section,
.performance-section,
.designed-section,
.stays-section,
.gallery-band,
.contact-section,
.site-footer {
  padding: 92px max(28px, calc((100vw - 1180px) / 2));
}

.reviews-section {
  position: relative;
  padding-top: 78px;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.reviews-section::before {
  display: none;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
  margin: 18px 0 36px;
}

h2 {
  font-family: var(--title-font);
  font-size: clamp(34px, 4.6vw, 70px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-family: var(--title-font);
  font-weight: 400;
}

.reviews-heading p,
.about-copy p,
.contact-section p,
.property-info p {
  color: var(--muted);
  line-height: 1.7;
}

.review-marquee {
  display: grid;
  gap: 16px;
  margin-inline: calc(max(28px, calc((100vw - 1180px) / 2)) * -1);
  padding-block: 8px;
  overflow: hidden;
}

.review-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: scroll-left var(--review-scroll-duration) linear infinite;
}

.review-track.right {
  animation-name: scroll-right;
}

.review-track.slow {
  animation-duration: var(--review-scroll-duration);
}

.review-pill {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 8px 12px;
  align-items: start;
  width: 430px;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px 16px 14px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(37, 48, 39, 0.08);
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sage), var(--sage-soft));
  font-size: 12px;
  font-weight: 900;
}

.review-summary {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.rating {
  justify-self: end;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.review-full {
  grid-column: 2 / 4;
  display: block;
  color: rgba(23, 34, 28, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.review-pill:hover .review-full {
  display: block;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 0.7fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
  background: #ffffff;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(37, 48, 39, 0.12);
}

.about-copy {
  font-size: 22px;
}

.managed-section {
  color: #ffffff;
  background: #17221c;
}

.managed-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.52fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.managed-intro span {
  grid-column: 1 / -1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: -20px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
}

.managed-intro h2 {
  max-width: 780px;
  color: #d8cda9;
}

.managed-intro p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.65;
}

.managed-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

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

.managed-table th,
.managed-table td {
  padding: 22px 24px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(23, 34, 28, 0.08);
  color: rgba(23, 34, 28, 0.72);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.managed-table th {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  background: rgba(248, 246, 241, 0.92);
}

.managed-table tr:last-child td {
  border-bottom: 0;
}

.managed-table th:first-child,
.managed-table td:first-child {
  width: 24%;
  color: var(--ink);
  font-weight: 900;
}

.managed-table th:nth-child(3),
.managed-table td:nth-child(3) {
  color: #274532;
  background: rgba(155, 133, 87, 0.13);
}

.managed-logo-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.managed-logo-head img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 7px;
}

.performance-section {
  background: #ffffff;
}

.performance-head {
  display: block;
  margin-bottom: 38px;
}

.performance-head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(56px, 6.8vw, 104px);
  font-weight: 400;
  line-height: 0.9;
}

.performance-head p {
  margin: 0 0 10px;
  color: rgba(23, 34, 28, 0.58);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.58;
}

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

.performance-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 24px;
  padding: 30px 30px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 246, 241, 0.74)),
    #ffffff;
  box-shadow: 0 22px 58px rgba(37, 48, 39, 0.08);
}

.performance-card.lux-reveal,
.performance-card.lux-reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.performance-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.08;
}

.performance-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 14px 0 24px;
  color: rgba(23, 34, 28, 0.56);
  font-size: 13px;
  font-weight: 800;
}

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

.performance-legend span::before {
  content: "";
  width: 18px;
  height: 3px;
  border-radius: 999px;
}

.performance-legend .traditional::before {
  background: #d8cda9;
}

.performance-legend .sukun::before {
  background: var(--sage);
}

.performance-period {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(23, 34, 28, 0.56);
  font-size: 14px;
  font-weight: 800;
}

.performance-period svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: rgba(23, 34, 28, 0.58);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.performance-stat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(23, 34, 28, 0.68);
  font-size: 16px;
  font-weight: 800;
}

.performance-stat strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  color: #274532;
  background: rgba(104, 130, 113, 0.16);
  font-size: 15px;
  font-weight: 950;
}

.mini-line-chart {
  position: relative;
  min-height: 260px;
}

.mini-line-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.mini-line-chart text {
  fill: rgba(23, 34, 28, 0.54);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.grid-lines line {
  stroke: rgba(23, 34, 28, 0.08);
  stroke-width: 1;
}

.line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.traditional-line {
  stroke: #d8cda9;
}

.sukun-line {
  stroke: var(--sage);
}

.traditional-dot {
  fill: #9b8557;
}

.sukun-dot {
  fill: #274532;
}

.chart-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(37, 48, 39, 0.08);
}

.sukun-tag {
  right: 22px;
  top: 44px;
  color: #274532;
  background: rgba(104, 130, 113, 0.18);
}

.traditional-tag {
  right: 8px;
  top: 150px;
  color: #6d5f3e;
  background: rgba(216, 205, 169, 0.24);
}

.adr-chart .sukun-tag {
  top: 44px;
}

.adr-chart .traditional-tag {
  top: 148px;
}

.occupancy-chart .sukun-tag {
  top: 42px;
}

.occupancy-chart .traditional-tag {
  top: 140px;
}

.managed-page {
  background: #ffffff;
}

.managed-landing-hero {
  min-height: 760px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(23, 34, 28, 0.96) 0%, rgba(23, 34, 28, 0.82) 45%, rgba(23, 34, 28, 0.38) 100%),
    url("/assets/section-3.png");
  background-size: cover;
  background-position: center;
}

.managed-hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(280px, 0.48fr);
  gap: 64px;
  align-items: end;
  width: min(1180px, calc(100% - 48px));
  min-height: 600px;
  margin: 0 auto;
  padding: 80px 0 92px;
}

.managed-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #d8cda9;
  font-size: clamp(72px, 8vw, 132px);
  line-height: 0.86;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.managed-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 650;
  line-height: 1.55;
}

.managed-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.outline-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.outline-light-btn:hover,
.outline-light-btn:focus-visible {
  border-color: rgba(216, 205, 169, 0.72);
  color: #d8cda9;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.managed-hero-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.managed-hero-panel span {
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 900;
}

.managed-hero-panel span:last-child {
  border-bottom: 0;
}

.managed-owner-section,
.managed-page-comparison,
.managed-process-section,
.managed-faq-section {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
}

.managed-owner-section {
  background: #ffffff;
}

.managed-owner-intro,
.managed-page-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.52fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.managed-owner-intro h2,
.managed-page-heading h2,
.managed-contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.9;
}

.managed-owner-intro p,
.managed-contact-section p {
  margin: 0;
  color: rgba(23, 34, 28, 0.62);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.managed-minimal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(23, 34, 28, 0.12);
  border-bottom: 1px solid rgba(23, 34, 28, 0.12);
}

.managed-minimal-grid article {
  min-height: 270px;
  padding: 32px 32px 36px 0;
  border-right: 1px solid rgba(23, 34, 28, 0.12);
}

.managed-minimal-grid article + article {
  padding-left: 32px;
}

.managed-minimal-grid article:last-child {
  border-right: 0;
}

.managed-minimal-grid strong,
.managed-process-list span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.managed-minimal-grid h3,
.managed-process-list h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
}

.managed-minimal-grid p,
.managed-process-list p,
.managed-faq-list p {
  margin: 0;
  color: rgba(23, 34, 28, 0.62);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.managed-page-comparison {
  color: #ffffff;
  background: #17221c;
}

.managed-page-comparison .managed-page-heading h2 {
  max-width: 920px;
  color: #d8cda9;
}

.managed-process-section {
  background: var(--paper);
}

.managed-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.managed-process-list article {
  padding-top: 28px;
  border-top: 1px solid rgba(23, 34, 28, 0.14);
}

.managed-process-list span {
  margin-bottom: 64px;
}

.managed-faq-section {
  background: #ffffff;
}

.managed-faq-list {
  border-top: 1px solid rgba(23, 34, 28, 0.12);
}

.managed-faq-list details {
  border-bottom: 1px solid rgba(23, 34, 28, 0.12);
  padding: 26px 0;
}

.managed-faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.managed-faq-list summary::-webkit-details-marker {
  display: none;
}

.managed-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.managed-faq-list details[open] summary::after {
  content: "-";
}

.managed-faq-list p {
  max-width: 820px;
  padding-top: 18px;
}

.managed-contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) auto;
  gap: 36px;
  align-items: end;
  margin: 0;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  color: #ffffff;
  background: #17221c;
}

.managed-contact-section h2 {
  max-width: 780px;
  color: #d8cda9;
}

.managed-contact-section p {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.owner-fit-page {
  background: #ffffff;
}

.owner-fit-hero {
  min-height: 860px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(23, 34, 28, 0.95) 0%, rgba(23, 34, 28, 0.82) 48%, rgba(23, 34, 28, 0.34) 100%),
    url("/assets/section-3.png");
  background-size: cover;
  background-position: center;
}

.owner-fit-hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(320px, 0.6fr);
  gap: 56px;
  align-items: end;
  width: min(1180px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  padding: 72px 0 96px;
}

.owner-fit-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #d8cda9;
  font-family: var(--title-font);
  font-size: clamp(68px, 8vw, 132px);
  font-weight: 400;
  line-height: 0.86;
}

.owner-fit-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 650;
  line-height: 1.58;
}

.owner-fit-copy .primary-btn {
  margin-top: 34px;
}

.owner-fit-video {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.owner-fit-video-frame {
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
}

.owner-fit-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-fit-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 34, 28, 0.08), rgba(23, 34, 28, 0.42));
}

.owner-fit-video-frame button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.owner-fit-video-frame button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
}

.owner-fit-video > div:last-child {
  padding: 24px 26px 28px;
}

.owner-fit-video h2 {
  margin: 0 0 10px;
  color: #d8cda9;
  font-family: var(--title-font);
  font-size: 44px;
  font-weight: 400;
  line-height: 0.94;
}

.owner-fit-video p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.62;
}

.owner-fit-intro,
.owner-fit-questionnaire {
  padding: 108px max(24px, calc((100vw - 1180px) / 2));
}

.owner-fit-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.7fr);
  gap: 60px;
  align-items: start;
  background: #ffffff;
}

.owner-fit-intro h2,
.owner-fit-form-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(58px, 6.7vw, 104px);
  font-weight: 400;
  line-height: 0.9;
}

.owner-fit-intro-copy {
  display: grid;
  gap: 18px;
}

.owner-fit-intro-copy p,
.owner-fit-form-head p {
  margin: 0;
  color: rgba(23, 34, 28, 0.62);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.68;
}

.owner-fit-questionnaire {
  background: var(--paper);
}

.owner-fit-form-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.5fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.owner-fit-form {
  display: grid;
  gap: 18px;
}

.owner-fit-step {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) 1fr;
  gap: 34px;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 28px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(37, 48, 39, 0.06);
}

.owner-fit-step > div:first-child span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.owner-fit-step h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.92;
}

.owner-fit-fields {
  display: grid;
  gap: 16px;
}

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

.owner-fit-fields.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.owner-fit-fields label,
.owner-fit-map-copy {
  display: grid;
  gap: 8px;
  color: rgba(23, 34, 28, 0.62);
  font-size: 12px;
  font-weight: 950;
}

.owner-fit-fields input,
.owner-fit-fields select,
.owner-fit-fields textarea {
  width: 100%;
  border: 1px solid rgba(23, 34, 28, 0.1);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fdfcf9;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  outline: none;
}

.owner-fit-fields textarea {
  resize: vertical;
}

.owner-fit-fields input:focus,
.owner-fit-fields select:focus,
.owner-fit-fields textarea:focus {
  border-color: rgba(104, 130, 113, 0.56);
  box-shadow: 0 0 0 4px rgba(104, 130, 113, 0.1);
}

.owner-fit-map-wrap {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) 1fr;
  gap: 18px;
  margin-top: 18px;
}

.owner-fit-map-copy {
  align-content: center;
  border-left: 2px solid rgba(216, 205, 169, 0.9);
  padding-left: 18px;
}

.owner-fit-map-copy strong {
  color: var(--ink);
  font-size: 17px;
}

.owner-fit-map-copy p {
  margin: 0;
  color: rgba(23, 34, 28, 0.56);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.owner-fit-map {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 24%, rgba(104, 130, 113, 0.24), transparent 24%),
    radial-gradient(circle at 76% 70%, rgba(216, 205, 169, 0.42), transparent 28%),
    #f8f6f1;
  cursor: crosshair;
}

.owner-fit-map-road {
  position: absolute;
  display: block;
  height: 34px;
  border-radius: 999px;
  background: rgba(23, 34, 28, 0.12);
}

.owner-fit-map-road.one {
  top: 52px;
  left: -20px;
  width: 70%;
  transform: rotate(10deg);
}

.owner-fit-map-road.two {
  right: -40px;
  bottom: 68px;
  width: 82%;
  transform: rotate(-8deg);
}

.owner-fit-map-road.three {
  top: 0;
  left: 48%;
  width: 32px;
  height: 120%;
  transform: rotate(24deg);
}

.owner-fit-map-pin {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 5px solid #ffffff;
  border-radius: 999px 999px 999px 0;
  background: #688271;
  box-shadow: 0 12px 24px rgba(23, 34, 28, 0.22);
  transform: translate(-50%, -100%) rotate(-45deg);
}

.owner-fit-map small {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 950;
}

.owner-fit-result {
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 24px;
  padding: 24px 28px;
  color: rgba(23, 34, 28, 0.68);
  background: #ffffff;
}

.owner-fit-result strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 42px;
  font-weight: 400;
  line-height: 0.94;
}

.owner-fit-result p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.owner-fit-result.is-yes {
  border-color: rgba(104, 130, 113, 0.26);
  background: rgba(104, 130, 113, 0.11);
}

.owner-fit-result.is-review {
  border-color: rgba(216, 205, 169, 0.55);
  background: rgba(216, 205, 169, 0.18);
}

.owner-fit-result.is-no {
  border-color: rgba(23, 34, 28, 0.16);
  background: rgba(23, 34, 28, 0.06);
}

.owner-fit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.owner-fit-actions button,
.owner-fit-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
}

.owner-fit-actions button {
  border: 0;
  color: #ffffff;
  background: #17221c;
  cursor: pointer;
}

.owner-fit-actions a {
  border: 1px solid rgba(23, 34, 28, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.designed-section {
  background: var(--paper);
  overflow: hidden;
}

.designed-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.52fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.designed-head h2 {
  max-width: 700px;
}

.designed-head p {
  margin: 0 0 8px;
  color: rgba(23, 34, 28, 0.62);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.65;
}

.designed-carousel {
  display: flex;
  gap: 28px;
  padding: 4px 0 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.designed-carousel::after {
  content: "";
  flex: 0 0 1px;
}

.designed-carousel::-webkit-scrollbar {
  height: 8px;
}

.designed-carousel::-webkit-scrollbar-track {
  background: rgba(23, 34, 28, 0.06);
  border-radius: 999px;
}

.designed-carousel::-webkit-scrollbar-thumb {
  background: rgba(155, 133, 87, 0.42);
  border-radius: 999px;
}

.designed-card {
  display: grid;
  align-content: start;
  flex: 0 0 calc((min(1180px, 100vw - 56px) - 28px) / 2);
  scroll-snap-align: start;
  min-height: 0;
}

.designed-placeholder,
.designed-media {
  aspect-ratio: 1.55 / 1;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 18px;
  margin-bottom: 22px;
  width: 100%;
  overflow: hidden;
  display: block;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 58px rgba(37, 48, 39, 0.12);
}

.designed-placeholder {
  background:
    linear-gradient(135deg, rgba(155, 133, 87, 0.2), rgba(255, 255, 255, 0.28)),
    #e7e2d6;
}

.designed-media.portrait {
  object-position: center 42%;
}

.designed-card h3 {
  margin: 0 0 12px;
  font-family: var(--title-font);
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 400;
  line-height: 0.98;
}

.designed-card p {
  margin: 0;
  color: rgba(23, 34, 28, 0.64);
  max-width: 500px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.stays-section {
  background: #ffffff;
  padding-inline: max(28px, calc((100vw - 1800px) / 2));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(260px, 0.42fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #4a5f9a;
  font-size: 13px;
  font-weight: 800;
}

.section-head h2 {
  max-width: 680px;
}

.section-head-copy {
  display: grid;
  gap: 22px;
  justify-items: start;
  padding-bottom: 12px;
}

.section-head-copy p {
  margin: 0;
  color: rgba(23, 34, 28, 0.58);
  font-size: 16px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  font-size: 24px;
  line-height: 1;
}

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

.property-card {
  position: relative;
  height: clamp(330px, 20vw, 420px);
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 20px 44px rgba(16, 24, 20, 0.16);
  transform: translateZ(0);
}

.property-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 650ms ease, filter 650ms ease;
}

.property-card:hover > img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.property-card::after {
  display: none;
}

.property-topline {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.type-pill,
.save-btn {
  pointer-events: auto;
  box-shadow: 0 12px 28px rgba(16, 24, 20, 0.13);
}

.type-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 800;
}

.type-pill::before {
  content: none;
}

.pill-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(7%) saturate(535%) hue-rotate(104deg) brightness(92%) contrast(87%);
}

.save-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.save-btn::before {
  content: "♡";
  display: grid;
  place-items: center;
  color: rgba(23, 34, 28, 0.62);
  font-size: 25px;
  line-height: 38px;
}

.property-info {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: auto;
  bottom: 24px;
  width: min(370px, calc(100% - 48px));
  display: grid;
  justify-items: start;
  border-radius: 20px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 34px rgba(16, 24, 20, 0.12);
  backdrop-filter: blur(18px);
}

.property-info h3 {
  margin: 0 0 8px;
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 400;
  line-height: 0.96;
}

.property-info p {
  margin-bottom: 18px;
  color: rgba(23, 34, 28, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.property-meta small {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  color: rgba(23, 34, 28, 0.72);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.property-meta small::before {
  content: "★";
  margin-right: 5px;
  color: var(--gold);
}

.property-info a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(150px, 100%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 24, 20, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr minmax(300px, 1.25fr);
  gap: 18px;
  align-items: stretch;
  color: #ffffff;
  background: #17221c;
}

.gallery-band img {
  width: 100%;
  height: 340px;
  border-radius: 18px;
  object-fit: cover;
}

.gallery-band div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-band h2 {
  margin-top: 12px;
  color: #d8cda9;
  font-size: clamp(28px, 3vw, 44px);
}

.faq-section {
  padding: 82px max(28px, calc((100vw - 1180px) / 2)) 96px;
  background: var(--paper);
}

.faq-section h2 {
  margin-bottom: 34px;
  text-align: center;
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1;
}

.faq-list {
  display: grid;
  border-top: 1px solid rgba(23, 34, 28, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(23, 34, 28, 0.1);
}

.faq-question {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 24px;
  align-items: center;
  min-height: 68px;
  cursor: pointer;
}

.faq-question > span:first-child {
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
}

.faq-question h3 {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.faq-chevron {
  justify-self: end;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(104, 130, 113, 0.72);
  border-left: 2px solid rgba(104, 130, 113, 0.72);
  transform: rotate(225deg);
  transition: transform 180ms ease;
}

.faq-answer {
  display: none;
  padding: 16px 64px 24px 64px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer p {
  margin-bottom: 6px;
  color: rgba(80, 88, 105, 0.74);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.75fr) auto;
  gap: 36px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 28px;
  margin: 0 max(28px, calc((100vw - 1180px) / 2)) 24px;
  padding-inline: 44px;
  background: #ffffff;
}

.contact-section h2 {
  margin-top: 14px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.8fr);
  gap: 48px;
  color: rgba(255, 255, 255, 0.78);
  background: #17221c;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand img {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.footer-brand p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #d8cda9;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 750;
}

.listing-page {
  background: #ffffff;
}

.listing-hero,
.listing-body {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.listing-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 36px 0 24px;
}

.listing-title h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(40px, 5.2vw, 76px);
}

.listing-subtitle,
.listing-note {
  color: var(--muted);
  line-height: 1.65;
}

.rating-badge {
  display: grid;
  place-items: center;
  min-width: 150px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: var(--paper);
}

.rating-badge strong {
  font-size: 34px;
  line-height: 1;
}

.rating-badge span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.listing-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 12px;
  height: min(58vw, 560px);
  min-height: 420px;
}

.listing-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-gallery img:first-child {
  border-radius: 24px 0 0 24px;
}

.gallery-stack {
  display: grid;
  gap: 12px;
}

.gallery-stack img:first-child {
  border-radius: 0 24px 0 0;
}

.gallery-stack img:last-child {
  border-radius: 0 0 24px 0;
}

.listing-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  padding: 56px 0 96px;
}

.listing-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.listing-section:first-child {
  padding-top: 0;
}

.listing-section h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
}

.feature-list,
.amenity-grid,
.review-grid {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.amenity-grid li,
.review-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
}

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

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

.review-card strong {
  display: block;
  margin-bottom: 8px;
}

.booking-panel {
  position: sticky;
  top: 24px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(37, 48, 39, 0.12);
}

.booking-panel h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.booking-panel .primary-btn {
  width: 100%;
  margin-top: 18px;
}

.source-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nest-inspired {
  color: #242826;
  background: #f8f6f1;
}

.nest-nav {
  width: min(1180px, calc(100% - 48px));
  height: auto;
  border-bottom: 0;
  padding: 24px 0;
  background: transparent;
}

.listing-page .site-nav {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
}

.listing-page .nest-hero {
  padding-top: 104px;
}

.nest-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #d8ddd6;
}

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

.nest-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 11, 0.66), rgba(10, 12, 11, 0.18) 42%, rgba(10, 12, 11, 0.02) 74%);
}

.breadcrumb,
.nest-hero-copy,
.show-photos {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  padding-top: 24px;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.breadcrumb span {
  opacity: 0.62;
  margin: 0 8px;
}

.nest-hero-copy {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  padding-top: 168px;
  color: #ffffff;
}

.nest-hero-copy h1 {
  max-width: 650px;
  font-family: var(--title-font);
  font-size: clamp(52px, 6.2vw, 94px);
  font-weight: 400;
  line-height: 0.96;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.22);
}

.nest-hero-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 800;
}

.show-photos {
  position: absolute;
  left: 34px;
  bottom: 126px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  padding: 0 28px;
  color: var(--ink);
  background: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.booking-strip {
  position: sticky;
  z-index: 20;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.65fr 1.15fr auto;
  align-items: center;
  gap: 0;
  width: min(1120px, calc(100% - 64px));
  min-height: 92px;
  margin: -76px auto 52px;
  border-radius: 22px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(10, 12, 11, 0.22);
  backdrop-filter: blur(16px);
}

.booking-strip div,
.booking-strip label {
  display: grid;
  gap: 4px;
  min-height: 54px;
  padding: 0 24px;
  border-right: 1px solid rgba(155, 133, 87, 0.34);
}

.booking-strip span {
  color: rgba(80, 88, 105, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.booking-strip strong {
  color: var(--ink);
  font-size: 18px;
}

.booking-strip input,
.booking-strip select {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  outline: none;
  appearance: auto;
}

.booking-strip input::-webkit-calendar-picker-indicator {
  opacity: 0.72;
  cursor: pointer;
}

.booking-price {
  align-content: center;
}

.booking-status {
  display: block;
  margin-top: 2px;
  color: rgba(23, 34, 28, 0.5);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.booking-status.is-ok {
  color: #4e705a;
}

.booking-status.is-warning {
  color: #9b8557;
}

.booking-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  padding: 0 34px;
  color: #ffffff;
  background: var(--sage);
  font-weight: 900;
}

.nest-overview,
.nest-amenities,
.project-section,
.rules-section,
.location-section {
  padding: 84px max(42px, calc((100vw - 1320px) / 2));
}

.nest-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 74px;
  align-items: start;
  background: #ffffff;
}

.nest-overview h2,
.nest-amenities h2,
.project-section h2,
.listing-reviews-section h2,
.rules-section h2,
.location-copy h2 {
  margin-bottom: 26px;
  font-family: var(--title-font);
  font-size: clamp(36px, 4.1vw, 66px);
  font-weight: 400;
  line-height: 0.98;
}

.overview-copy p {
  color: rgba(36, 40, 38, 0.82);
  font-size: 18px;
  line-height: 1.85;
}

.nest-overview > img,
.nest-amenities > img,
.project-grid img {
  width: 100%;
  object-fit: cover;
}

.nest-overview > img,
.nest-amenities > img {
  height: 540px;
}

.spec-list {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.spec-list span,
.spec-list strong {
  font-size: 18px;
}

.spec-list span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: rgba(36, 40, 38, 0.82);
  font-weight: 800;
}

.spec-list strong {
  text-align: right;
  font-weight: 900;
}

.nest-amenities {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.78fr);
  gap: 74px;
  align-items: center;
  background: var(--paper);
}

.nest-amenities h3 {
  margin: 0 0 26px;
  font-family: var(--title-font);
  font-size: 34px;
  font-weight: 400;
  line-height: 0.98;
}

.nest-amenities ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 36px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nest-amenities li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(36, 40, 38, 0.86);
  font-size: 17px;
  font-weight: 800;
}

.nest-amenities li::before {
  content: none;
}

.listing-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(14%) saturate(725%) hue-rotate(94deg) brightness(89%) contrast(85%);
}

.project-section {
  background: #ffffff;
}

.listing-reviews-section {
  padding: 84px max(72px, calc((100vw - 1180px) / 2));
  background: var(--paper);
}

.listing-reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.listing-reviews-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
}

.listing-reviews-head h2 {
  max-width: 680px;
}

.listing-reviews-head p {
  margin: 0 0 10px;
  color: rgba(36, 40, 38, 0.7);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.listing-reviews-head strong {
  color: var(--ink);
}

.listing-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.listing-review-card {
  min-height: 230px;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(37, 48, 39, 0.08);
}

.listing-review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.listing-review-card-head img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper);
}

.listing-review-card-head div {
  display: grid;
  gap: 3px;
}

.listing-review-card-head strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.listing-review-card-head span,
.listing-review-meta {
  color: rgba(80, 88, 105, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.listing-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 14px;
}

.listing-review-meta span:first-child {
  color: var(--ink);
}

.listing-review-card p {
  margin: 0;
  color: rgba(36, 40, 38, 0.82);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.review-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-top: 28px;
  padding: 0 24px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 24, 20, 0.08);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.review-more-btn:hover,
.review-more-btn:focus-visible {
  border-color: rgba(90, 119, 99, 0.42);
  color: var(--sage);
  transform: translateY(-1px);
}

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

.project-grid img {
  aspect-ratio: 1.08 / 1;
  margin-bottom: 34px;
}

.project-grid h3,
.rules-grid h3 {
  margin: 0 0 18px;
  font-family: var(--title-font);
  font-size: 34px;
  font-weight: 400;
  line-height: 0.98;
}

.project-grid p,
.rules-grid p,
.location-copy p {
  color: rgba(80, 88, 105, 0.78);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.rules-section {
  background: #ffffff;
}

.rules-grid {
  gap: 80px;
}

.rules-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(90, 119, 99, 0.1);
}

.rule-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(14%) saturate(725%) hue-rotate(94deg) brightness(89%) contrast(85%);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 520px;
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff;
}

.map-panel {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(28deg, transparent 0 42%, rgba(167, 181, 195, 0.88) 42% 49%, transparent 49%),
    linear-gradient(176deg, transparent 0 48%, rgba(167, 181, 195, 0.9) 48% 55%, transparent 55%),
    linear-gradient(104deg, transparent 0 60%, rgba(167, 181, 195, 0.84) 60% 68%, transparent 68%),
    #eef0f5;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: rgba(195, 239, 210, 0.9);
}

.map-panel span {
  position: absolute;
  left: 52%;
  top: 48%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(16, 24, 20, 0.13);
}

.map-panel span img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(7%) saturate(535%) hue-rotate(104deg) brightness(92%) contrast(87%);
}

.location-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
  padding: 48px;
}

.location-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 28px;
  color: #ffffff;
  background: #2d7546;
  font-weight: 900;
}

.dashboard-page {
  min-height: 100svh;
  background: #f3f1eb;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100svh;
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  align-content: start;
  gap: 34px;
  height: 100svh;
  padding: 26px 22px;
  color: #ffffff;
  background: #17221c;
}

.dashboard-brand {
  display: inline-flex;
  width: 152px;
}

.dashboard-brand img {
  width: 100%;
  height: auto;
}

.dashboard-sidebar nav {
  display: grid;
  gap: 6px;
}

.dashboard-sidebar nav a {
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.dashboard-sidebar nav a:hover,
.dashboard-sidebar nav a:focus-visible {
  color: #d8cda9;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.dashboard-sidebar-note {
  margin-top: 12px;
  border: 1px solid rgba(216, 205, 169, 0.18);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-sidebar-note span,
.dashboard-topbar span,
.panel-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-sidebar-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.dashboard-main {
  display: grid;
  gap: 24px;
  align-content: start;
  padding: 28px;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.dashboard-topbar h1,
.dashboard-hero h2,
.dashboard-panel h2 {
  margin: 4px 0 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.dashboard-topbar h1 {
  font-size: clamp(28px, 4vw, 48px);
}

.dashboard-owner-line {
  margin: 8px 0 0;
  color: rgba(23, 34, 28, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.dashboard-top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-top-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(23, 34, 28, 0.12);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.dashboard-top-actions a:last-child {
  color: #ffffff;
  background: #17221c;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 24px;
  overflow: hidden;
  border-radius: 28px;
  color: #ffffff;
  background: #17221c;
  box-shadow: 0 24px 64px rgba(23, 34, 28, 0.12);
}

.dashboard-hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 56px);
}

.dashboard-status-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.dashboard-status-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(216, 205, 169, 0.26);
  border-radius: 999px;
  padding: 0 12px;
  color: #f5f0dc;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-hero h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
}

.dashboard-hero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.dashboard-hero > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.dashboard-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.dashboard-highlights span {
  border-radius: 999px;
  padding: 9px 12px;
  color: #17221c;
  background: #d8cda9;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-kpi,
.dashboard-panel {
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(23, 34, 28, 0.08);
}

.dashboard-kpi {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.dashboard-kpi span,
.dashboard-kpi small {
  color: rgba(23, 34, 28, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-kpi strong {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 24px;
}

.dashboard-panel {
  padding: 24px;
}

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

.panel-head.compact {
  display: block;
}

.panel-head h2 {
  font-size: clamp(22px, 2.2vw, 32px);
}

.panel-head p {
  max-width: 280px;
  margin: 0;
  color: rgba(23, 34, 28, 0.54);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.dashboard-chart,
.expense-timeline,
.score-list,
.expense-category-list {
  display: grid;
  gap: 13px;
}

.chart-row,
.expense-month {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(150px, auto);
  gap: 14px;
  align-items: center;
}

.chart-row strong,
.expense-month strong {
  font-size: 13px;
  font-weight: 900;
}

.chart-row small,
.expense-month small {
  color: rgba(23, 34, 28, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.occupancy-bar,
.payout-bar,
.expense-month span,
.score-item i,
.expense-category i {
  display: block;
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(23, 34, 28, 0.08);
}

.occupancy-bar::before,
.payout-bar::before,
.expense-month span::before,
.score-item i::before,
.expense-category i::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #688271;
}

.occupancy-bar::before {
  width: var(--occupancy, 0%);
}

.payout-bar::before {
  width: var(--payout, 0%);
}

.expense-month span::before {
  width: var(--expense, 0%);
}

.score-item i::before {
  width: var(--score, 0%);
}

.expense-category i::before {
  width: var(--amount, 0%);
}

.payout-bar {
  grid-column: 2 / 3;
  height: 8px;
  margin-top: -6px;
}

.payout-bar::before {
  background: #d8cda9;
}

.score-item,
.expense-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
}

.score-item span,
.expense-category span {
  font-size: 13px;
  font-weight: 900;
}

.score-item strong,
.expense-category strong {
  color: rgba(23, 34, 28, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.score-item i,
.expense-category i {
  grid-column: 1 / -1;
}

.expense-category i::before,
.expense-month span::before {
  background: #9b8557;
}

.report-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.report-tabs button {
  min-height: 40px;
  border: 1px solid rgba(23, 34, 28, 0.12);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.report-tabs button.is-active {
  color: #ffffff;
  background: #17221c;
}

.report-card {
  display: grid;
  gap: 14px;
  border-radius: 18px;
  padding: 22px;
  background: #f8f6f1;
}

.report-card > span {
  justify-self: start;
  border-radius: 999px;
  padding: 7px 10px;
  color: #17221c;
  background: #d8cda9;
  font-size: 12px;
  font-weight: 900;
}

.report-card h3,
.report-card p,
.report-card strong,
.report-updates {
  margin: 0;
}

.report-card h3 {
  font-size: 24px;
  font-weight: 900;
}

.report-card p,
.report-card strong,
.report-updates li,
.property-details dd,
.dashboard-notes li {
  color: rgba(23, 34, 28, 0.64);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
}

.report-card strong {
  color: var(--ink);
}

.report-updates,
.dashboard-notes {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.property-details {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) 1fr;
  gap: 14px 18px;
  margin: 0;
}

.property-details dt {
  color: rgba(23, 34, 28, 0.52);
  font-size: 12px;
  font-weight: 900;
}

.property-details dd {
  margin: 0;
}

.dashboard-error {
  border-color: rgba(155, 77, 70, 0.24);
}

/* Premium client dashboard refresh */
.dashboard-page {
  background:
    linear-gradient(180deg, rgba(216, 205, 169, 0.18), rgba(255, 255, 255, 0) 360px),
    #f8f6f1;
}

.dashboard-shell {
  display: block;
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 34px;
}

.dashboard-sidebar {
  position: sticky;
  z-index: 10;
  top: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  height: auto;
  border: 1px solid rgba(23, 34, 28, 0.06);
  border-radius: 20px;
  padding: 14px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(23, 34, 28, 0.08);
  backdrop-filter: blur(18px);
}

.dashboard-brand {
  width: 122px;
  border-radius: 14px;
  padding: 8px 10px;
  background: #17221c;
}

.dashboard-sidebar nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dashboard-sidebar nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 13px;
  padding: 0 16px;
  color: rgba(23, 34, 28, 0.72);
  background: transparent;
}

.dashboard-sidebar nav a:first-child,
.dashboard-sidebar nav a:hover,
.dashboard-sidebar nav a:focus-visible {
  color: #ffffff;
  background: #688271;
}

.dashboard-sidebar-note {
  margin: 0;
  border: 0;
  border-radius: 16px;
  padding: 10px 14px;
  color: #ffffff;
  background: #17221c;
}

.dashboard-sidebar-note span {
  color: #d8cda9;
  font-size: 10px;
}

.dashboard-sidebar-note p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.25;
}

.dashboard-main {
  padding: 24px 0 0;
}

.dashboard-topbar {
  border-radius: 24px;
  padding: 26px 28px;
  background: #ffffff;
  box-shadow: 0 18px 56px rgba(23, 34, 28, 0.07);
}

.dashboard-topbar h1 {
  font-family: var(--title-font);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.86;
}

.dashboard-owner-line {
  color: rgba(23, 34, 28, 0.62);
}

.dashboard-top-actions a {
  min-height: 46px;
  border-color: rgba(23, 34, 28, 0.1);
  box-shadow: 0 10px 26px rgba(23, 34, 28, 0.06);
}

.dashboard-top-actions a:last-child {
  background: #688271;
}

.dashboard-hero {
  grid-template-columns: minmax(360px, 0.78fr) minmax(420px, 1fr);
  gap: 0;
  min-height: 470px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(23, 34, 28, 0.98), rgba(48, 75, 58, 0.92)),
    #17221c;
}

.dashboard-hero-copy {
  padding: clamp(30px, 4vw, 62px);
}

.dashboard-hero h2 {
  font-family: var(--title-font);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
}

.dashboard-hero p {
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-hero > img {
  min-height: 470px;
  border: 12px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
}

.dashboard-status-row span {
  color: #17221c;
  background: #d8cda9;
}

.dashboard-highlights span {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
}

.dashboard-kpis {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  border-radius: 28px;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 205, 169, 0.38), transparent 34%),
    linear-gradient(135deg, #17221c, #688271);
}

.dashboard-kpi {
  position: relative;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.dashboard-kpi i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #17221c;
  background: rgba(216, 205, 169, 0.72);
  font-style: normal;
  font-weight: 900;
}

.dashboard-kpi strong {
  font-family: var(--title-font);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
}

.dashboard-panel {
  border-color: rgba(23, 34, 28, 0.07);
  border-radius: 24px;
  background: #ffffff;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.62fr);
}

.dashboard-chart {
  grid-template-columns: repeat(6, minmax(72px, 1fr));
  align-items: end;
  min-height: 330px;
  border-radius: 20px;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, rgba(104, 130, 113, 0.07), rgba(216, 205, 169, 0.12));
}

.chart-column {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 10px;
  align-items: end;
  height: 286px;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
}

.chart-column small {
  color: rgba(23, 34, 28, 0.58);
  font-size: 11px;
  font-weight: 900;
}

.chart-column strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.chart-column em {
  color: rgba(23, 34, 28, 0.5);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.chart-tower {
  position: relative;
  display: block;
  align-self: stretch;
  overflow: hidden;
  min-height: 200px;
  border-radius: 18px 18px 8px 8px;
  background: rgba(104, 130, 113, 0.12);
}

.chart-tower::before,
.chart-tower::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 62%;
  border-radius: 18px 18px 8px 8px;
  transform: translateX(-50%);
}

.chart-tower::before {
  height: var(--occupancy);
  background: #688271;
}

.chart-tower::after {
  width: 34%;
  height: var(--payout);
  background: #d8cda9;
  opacity: 0.95;
}

.chart-column.is-active .chart-tower {
  box-shadow: 0 0 0 2px rgba(216, 205, 169, 0.85), 0 16px 40px rgba(23, 34, 28, 0.12);
}

.chart-column:hover .chart-tower,
.chart-column:focus-visible .chart-tower {
  box-shadow: 0 0 0 2px rgba(104, 130, 113, 0.22), 0 16px 40px rgba(23, 34, 28, 0.1);
}

.score-item i,
.expense-category i,
.expense-month span {
  background: rgba(104, 130, 113, 0.11);
}

.score-item i::before {
  background: #688271;
}

.expense-category i::before,
.expense-month span::before {
  background: #d8cda9;
}

.report-card {
  background: linear-gradient(135deg, rgba(104, 130, 113, 0.08), rgba(216, 205, 169, 0.14));
}

.trend-panel {
  overflow: hidden;
}

.trend-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 18px;
}

.trend-summary-item,
.trend-legend {
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  background: #f8f6f1;
}

.trend-summary-item span,
.trend-legend span {
  display: block;
  color: rgba(23, 34, 28, 0.5);
  font-size: 11px;
  font-weight: 900;
}

.trend-summary-item strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.trend-legend {
  display: grid;
  gap: 8px;
  min-width: 170px;
  align-content: center;
}

.trend-legend span {
  position: relative;
  padding-left: 18px;
  color: rgba(23, 34, 28, 0.68);
}

.trend-legend span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.trend-legend .payout::before {
  background: #688271;
}

.trend-legend .expense::before {
  background: #d8cda9;
}

.line-chart-wrap {
  overflow-x: auto;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(104, 130, 113, 0.05), rgba(216, 205, 169, 0.1)),
    #ffffff;
}

.line-chart-wrap::-webkit-scrollbar {
  display: none;
}

.line-chart {
  position: relative;
  min-width: 720px;
}

.line-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.line-chart line {
  stroke: rgba(23, 34, 28, 0.08);
  stroke-width: 1;
}

.line-chart text {
  fill: rgba(23, 34, 28, 0.42);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-anchor: end;
}

.line-chart .month-label {
  text-anchor: middle;
  fill: rgba(23, 34, 28, 0.58);
}

.line-chart-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.line-chart-path.payout {
  stroke: #688271;
}

.line-chart-path.expense {
  stroke: #d8cda9;
}

.line-dot {
  stroke: #ffffff;
  stroke-width: 4;
}

.line-dot.payout {
  fill: #688271;
}

.line-dot.expense {
  fill: #d8cda9;
}

.line-hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(104, 130, 113, 0.2);
  border-radius: 50%;
  background: rgba(104, 130, 113, 0.12);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.line-hotspot.expense {
  border-color: rgba(216, 205, 169, 0.45);
  background: rgba(216, 205, 169, 0.2);
}

.line-hotspot:hover,
.line-hotspot:focus-visible,
.line-hotspot.is-active {
  outline: none;
  background: #688271;
  box-shadow: 0 0 0 6px rgba(104, 130, 113, 0.12);
}

.line-hotspot.expense:hover,
.line-hotspot.expense:focus-visible,
.line-hotspot.expense.is-active {
  background: #d8cda9;
  box-shadow: 0 0 0 6px rgba(216, 205, 169, 0.2);
}

.line-chart-tooltip {
  position: absolute;
  left: 86%;
  top: 30%;
  z-index: 2;
  min-width: 150px;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
  color: #17221c;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(23, 34, 28, 0.1);
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, calc(-100% - 14px));
  pointer-events: none;
}

.transactions-panel {
  overflow: hidden;
}

.transaction-filters {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px 0 18px;
}

.transaction-filters span {
  color: rgba(23, 34, 28, 0.46);
  font-size: 12px;
  font-weight: 900;
}

.transaction-filters button {
  min-height: 32px;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(23, 34, 28, 0.66);
  background: #f8f6f1;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}

.transaction-filters button:nth-child(3) {
  color: #17221c;
  background: rgba(216, 205, 169, 0.44);
}

.transactions-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(23, 34, 28, 0.07);
  border-radius: 20px;
}

.transactions-table-wrap::-webkit-scrollbar {
  height: 0;
}

.transactions-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #ffffff;
}

.transactions-table th,
.transactions-table td {
  border-bottom: 1px solid rgba(23, 34, 28, 0.07);
  padding: 16px 18px;
  text-align: left;
  vertical-align: middle;
}

.transactions-table th {
  color: rgba(23, 34, 28, 0.42);
  font-size: 11px;
  font-weight: 900;
}

.transactions-table td {
  color: rgba(23, 34, 28, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.transactions-table tr:last-child td {
  border-bottom: 0;
}

.transaction-party {
  display: flex;
  gap: 10px;
  align-items: center;
}

.transaction-party span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #17221c;
  background: #d8cda9;
  font-size: 12px;
  font-weight: 900;
}

.transaction-party strong {
  color: var(--ink);
  font-size: 13px;
}

.transaction-type,
.transaction-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.transaction-type {
  color: #17221c;
  background: rgba(104, 130, 113, 0.14);
}

.transaction-type.expense,
.transaction-type.management-fee {
  background: rgba(216, 205, 169, 0.28);
}

.transaction-status {
  color: #2d7546;
  background: rgba(104, 130, 113, 0.12);
}

.transaction-amount {
  color: #2d7546;
  white-space: nowrap;
}

.transaction-amount.expense,
.transaction-amount.management-fee {
  color: #9b8557;
}

/* Minimal Sokoun owner dashboard pass */
.dashboard-page {
  background: #ffffff;
}

.dashboard-shell {
  width: min(1320px, calc(100% - 48px));
  padding: 22px 0 72px;
}

.dashboard-sidebar {
  top: 0;
  border: 0;
  border-radius: 0;
  padding: 8px 0 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.dashboard-brand {
  width: 138px;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.dashboard-brand img {
  filter: invert(1) brightness(0.18) sepia(0.2) saturate(1.4) hue-rotate(82deg);
}

.dashboard-sidebar nav {
  justify-content: flex-end;
}

.dashboard-sidebar nav a {
  min-height: 36px;
  border-radius: 0;
  padding: 0 10px;
  color: rgba(23, 34, 28, 0.58);
  font-size: 12px;
}

.dashboard-sidebar nav a:first-child,
.dashboard-sidebar nav a:hover,
.dashboard-sidebar nav a:focus-visible {
  color: #688271;
  background: transparent;
}

.dashboard-topbar {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) auto;
  margin: 12px 0 28px;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.dashboard-topbar span,
.panel-head span {
  color: #9b8557;
}

.dashboard-topbar h1 {
  max-width: 760px;
  margin-top: 8px;
  color: #17221c;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.82;
}

.dashboard-owner-line {
  max-width: 560px;
  color: rgba(23, 34, 28, 0.54);
  font-size: 16px;
  line-height: 1.6;
}

.dashboard-page h1,
.dashboard-page h2,
.dashboard-page h3,
.panel-head h2,
.guest-love-copy h2,
.calendar-copy h2,
.report-card h3 {
  font-family: var(--title-font);
  font-weight: 400;
  letter-spacing: 0;
}

.dashboard-top-actions a {
  border: 1px solid rgba(23, 34, 28, 0.1);
  box-shadow: none;
}

.dashboard-top-actions a:last-child {
  background: #17221c;
}

.dashboard-hero {
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.74fr);
  gap: 28px;
  min-height: 0;
  border-radius: 0;
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
}

.dashboard-hero > img {
  order: -1;
  min-height: 560px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(23, 34, 28, 0.12);
}

.dashboard-hero-copy {
  align-content: center;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  background: #f8f6f1;
}

.dashboard-hero h2 {
  color: #17221c;
  font-size: clamp(46px, 5.6vw, 84px);
}

.dashboard-hero p {
  color: rgba(23, 34, 28, 0.58);
}

.dashboard-status-row span {
  color: #17221c;
  background: #d8cda9;
}

.dashboard-highlights span {
  color: #17221c;
  background: rgba(104, 130, 113, 0.12);
}

.dashboard-kpis {
  gap: 1px;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  background: #17221c;
}

.earnings-overview {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 205, 169, 0.28), transparent 38%),
    linear-gradient(135deg, #17221c, #304b3a);
}

.earnings-copy {
  display: grid;
  align-content: center;
  min-height: 280px;
}

.earnings-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 0.88;
}

.earnings-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 850;
}

.earnings-copy strong {
  display: block;
  margin-top: 18px;
  color: #d8cda9;
  font-family: var(--title-font);
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.84;
}

.earnings-controls {
  display: grid;
  gap: 16px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

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

.earnings-range label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.earnings-range input {
  appearance: none;
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  color-scheme: dark;
}

.earnings-range input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1);
  opacity: 0.72;
}

.earnings-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.earnings-presets button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.earnings-presets button.is-active,
.earnings-presets button:hover,
.earnings-presets button:focus-visible {
  color: #17221c;
  background: #d8cda9;
  outline: none;
}

.earnings-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.earnings-metric {
  border: 0;
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.earnings-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 900;
}

.earnings-metric strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.dashboard-kpi {
  min-height: 138px;
  border: 0;
  border-radius: 0;
  padding: 22px;
  background: #17221c;
}

.dashboard-kpi + .dashboard-kpi {
  border-left: 1px solid rgba(216, 205, 169, 0.16);
}

.dashboard-kpi i {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: #17221c;
  background: #d8cda9;
}

.dashboard-kpi span,
.dashboard-kpi small {
  color: rgba(255, 255, 255, 0.62);
}

.dashboard-kpi strong {
  color: #ffffff;
}

.dashboard-panel {
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: none;
}

.dashboard-grid {
  gap: 22px;
}

.dashboard-chart,
.line-chart-wrap,
.report-card {
  background: #f8f6f1;
}

.trend-summary-item,
.trend-legend,
.transaction-filters button {
  background: #ffffff;
}

.transactions-table-wrap {
  border-color: rgba(23, 34, 28, 0.08);
}

.dashboard-topbar > div:first-child > span {
  color: #9b8557;
}

.guest-love-section,
.calendar-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 28px;
  background: #f8f6f1;
}

.guest-love-copy,
.calendar-copy {
  display: grid;
  align-content: center;
}

.guest-love-copy > span,
.calendar-copy > span {
  margin-bottom: 12px;
  color: #9b8557;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guest-love-copy h2,
.calendar-copy h2 {
  max-width: 460px;
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.86;
}

.guest-love-copy p,
.calendar-copy p {
  max-width: 460px;
  margin: 22px 0 0;
  color: rgba(23, 34, 28, 0.58);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.65;
}

.guest-love-signals {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.guest-love-signal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(23, 34, 28, 0.08);
  padding-bottom: 10px;
}

.guest-love-signal span {
  color: rgba(23, 34, 28, 0.5);
  font-size: 12px;
  font-weight: 900;
}

.guest-love-signal strong {
  color: #17221c;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.guest-review-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.guest-review-strip::-webkit-scrollbar {
  display: none;
}

.owner-review-card {
  flex: 0 0 min(360px, 82vw);
  display: grid;
  align-content: start;
  min-height: 230px;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 22px;
  padding: 20px;
  background: #ffffff;
  scroll-snap-align: start;
}

.owner-review-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.owner-review-head img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.owner-review-head strong {
  display: block;
  color: #17221c;
  font-size: 14px;
  font-weight: 900;
}

.owner-review-head span {
  display: block;
  margin-top: 3px;
  color: rgba(23, 34, 28, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.owner-review-card p {
  margin: 0;
  color: rgba(23, 34, 28, 0.68);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
}

.reviews-board-section {
  background: #ffffff;
}

.reviews-board-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.reviews-board-stat {
  border-radius: 18px;
  padding: 16px;
  background: #f8f6f1;
}

.reviews-board-stat span {
  display: block;
  color: rgba(23, 34, 28, 0.5);
  font-size: 11px;
  font-weight: 900;
}

.reviews-board-stat strong {
  display: block;
  margin-top: 6px;
  color: #17221c;
  font-family: var(--title-font);
  font-size: 34px;
  font-weight: 400;
  line-height: 0.95;
}

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

.board-review-card {
  min-height: 250px;
  background: #f8f6f1;
}

.reviews-board-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  border: 1px solid rgba(23, 34, 28, 0.12);
  border-radius: 999px;
  padding: 0 18px;
  color: #17221c;
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.calendar-legend span {
  position: relative;
  padding-left: 18px;
  color: rgba(23, 34, 28, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.calendar-legend span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid rgba(23, 34, 28, 0.14);
}

.calendar-legend .booked::before {
  background: #688271;
}

.calendar-legend .closed::before {
  background: #d8cda9;
}

.owner-calendar-card {
  border-radius: 24px;
  padding: 22px;
  background: #ffffff;
}

.owner-calendar-head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.owner-calendar-head strong {
  text-align: center;
  color: #17221c;
  font-size: 18px;
  font-weight: 900;
}

.owner-calendar-head button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(23, 34, 28, 0.1);
  border-radius: 50%;
  color: #17221c;
  background: #ffffff;
  font-size: 22px;
}

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

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: rgba(23, 34, 28, 0.42);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.calendar-day {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 14px;
  color: #17221c;
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.calendar-day.empty {
  border: 0;
  background: transparent;
  pointer-events: none;
}

.calendar-day.is-booked {
  color: #ffffff;
  background: #688271;
  cursor: not-allowed;
}

.calendar-day.is-closed {
  color: #17221c;
  background: #d8cda9;
}

.calendar-day.is-range-selected {
  border-color: rgba(104, 130, 113, 0.32);
  background: rgba(104, 130, 113, 0.12);
  box-shadow: inset 0 0 0 1px rgba(104, 130, 113, 0.2);
}

.calendar-day.is-available:hover,
.calendar-day.is-available:focus-visible {
  border-color: #688271;
  outline: none;
}

.calendar-range-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  border-top: 1px solid rgba(23, 34, 28, 0.08);
  padding-top: 16px;
}

.calendar-range-actions p {
  margin: 0;
  color: rgba(23, 34, 28, 0.6);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}

.calendar-range-actions button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #ffffff;
  background: #688271;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.calendar-range-actions button:disabled {
  color: rgba(23, 34, 28, 0.45);
  background: rgba(23, 34, 28, 0.08);
  cursor: not-allowed;
}

/* Internal property manager desk */
.ops-page {
  min-height: 100vh;
  background: #f8f6f1;
}

.ops-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  width: min(100% - 32px, 1560px);
  margin: 0 auto;
  padding: 18px 0 32px;
}

.ops-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  align-content: start;
  gap: 22px;
  height: calc(100svh - 36px);
  border-radius: 28px;
  padding: 22px;
  color: #ffffff;
  background: #17221c;
}

.ops-brand img {
  display: block;
  width: 148px;
  height: auto;
}

.ops-sidebar nav {
  display: grid;
  gap: 8px;
}

.ops-sidebar nav a {
  border-radius: 999px;
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.ops-sidebar nav a:hover {
  color: #17221c;
  background: #d8cda9;
}

.ops-sidebar-note {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.ops-sidebar-note span {
  color: #d8cda9;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-sidebar-note strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.ops-sidebar-note p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

.ops-main {
  display: grid;
  gap: 22px;
}

.ops-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 18px 0 6px;
}

.ops-hero p {
  margin: 0 0 12px;
  color: #9b8557;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #17221c;
  font-family: var(--title-font);
  font-size: clamp(62px, 9vw, 140px);
  font-weight: 400;
  line-height: 0.82;
}

.ops-date-card,
.ops-panel,
.ops-overview article {
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 24px;
  background: #ffffff;
}

.ops-date-card {
  min-width: 250px;
  padding: 20px;
}

.ops-date-card span,
.ops-date-card small,
.ops-overview span,
.ops-panel-head p,
.ops-submission-row small,
.ops-property-card small {
  color: rgba(23, 34, 28, 0.5);
  font-size: 12px;
  font-weight: 900;
}

.ops-date-card strong {
  display: block;
  margin: 6px 0 10px;
  color: #17221c;
  font-size: 20px;
  font-weight: 900;
}

.ops-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ops-overview article {
  min-height: 130px;
  padding: 18px;
}

.ops-overview strong {
  display: block;
  margin-top: 18px;
  color: #17221c;
  font-family: var(--title-font);
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
  line-height: 0.88;
}

.ops-master-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 14px;
}

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

.ops-focus-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(23, 34, 28, 0.08);
  padding-top: 10px;
}

.ops-focus-row span,
.ops-focus-row small,
.ops-figure span {
  color: rgba(23, 34, 28, 0.52);
  font-size: 12px;
  font-weight: 900;
}

.ops-focus-row strong {
  color: #17221c;
  font-size: 14px;
  font-weight: 900;
}

.ops-key-figures > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ops-figure {
  border-radius: 16px;
  padding: 14px;
  background: #f8f6f1;
}

.ops-figure strong {
  display: block;
  margin-top: 8px;
  color: #17221c;
  font-family: var(--title-font);
  font-size: 44px;
  font-weight: 400;
  line-height: 0.86;
}

.ops-master-calendar-panel {
  overflow: hidden;
}

.ops-calendar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.ops-filter-chip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(23, 34, 28, 0.1);
  border-radius: 999px;
  padding: 8px 11px;
  color: #17221c;
  background: #f8f6f1;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.ops-filter-chip input {
  width: 14px;
  height: 14px;
  accent-color: #688271;
}

.ops-master-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.ops-master-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(23, 34, 28, 0.64);
  background: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.ops-master-legend span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(23, 34, 28, 0.18);
}

.ops-master-legend .stay::before {
  background: #688271;
}

.ops-master-legend .checkin::before {
  background: #d8cda9;
}

.ops-master-legend .checkout::before {
  background: #17221c;
}

.ops-master-legend .turnover::before {
  background: linear-gradient(135deg, #d8cda9 0 50%, #688271 50% 100%);
}

.ops-master-legend .maintenance::before {
  border: 1px dashed #9b8557;
  background: rgba(216, 205, 169, 0.34);
}

.ops-master-calendar {
  display: grid;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ops-master-calendar-row {
  display: grid;
  grid-template-columns: 150px repeat(14, minmax(62px, 1fr));
  gap: 6px;
  min-width: 1060px;
  align-items: stretch;
}

.ops-master-calendar-row > span,
.ops-master-calendar-row.header strong {
  display: grid;
  place-items: center start;
  border-radius: 12px;
  padding: 10px;
  color: rgba(23, 34, 28, 0.58);
  background: #f8f6f1;
  font-size: 11px;
  font-weight: 900;
}

.ops-master-calendar-row > span {
  color: #17221c;
}

.ops-master-cell {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  min-height: 46px;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 12px;
  color: rgba(23, 34, 28, 0.36);
  background: #ffffff;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
}

.ops-master-cell strong,
.ops-master-cell small {
  display: block;
  line-height: 1;
}

.ops-master-cell small {
  font-size: 8px;
  font-weight: 900;
  opacity: 0.76;
}

.ops-master-cell.is-booked {
  color: #ffffff;
  background: #688271;
}

.ops-master-cell.is-checkin {
  color: #17221c;
  background: #d8cda9;
}

.ops-master-cell.is-checkout {
  color: #ffffff;
  background: #17221c;
}

.ops-master-cell.is-turnover {
  position: relative;
  color: #17221c;
  border-color: rgba(155, 133, 87, 0.76);
  background: linear-gradient(135deg, #d8cda9 0%, #f8f6f1 46%, rgba(104, 130, 113, 0.25) 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.62), 0 10px 22px rgba(155, 133, 87, 0.16);
}

.ops-master-cell.is-maintenance {
  color: #17221c;
  background: rgba(216, 205, 169, 0.45);
  border-style: dashed;
}

.ops-reservations {
  display: grid;
  gap: 16px;
}

.ops-reservation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ops-reservation-card {
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 24px;
  padding: 18px;
  background: #ffffff;
}

.ops-reservation-card > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.ops-reservation-card span {
  color: rgba(23, 34, 28, 0.54);
  font-size: 12px;
  font-weight: 900;
}

.ops-reservation-card > div strong {
  color: #17221c;
  font-family: var(--title-font);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.82;
}

.ops-reservation-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ops-reservation-card li {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(23, 34, 28, 0.08);
  padding-top: 10px;
}

.ops-reservation-card li strong {
  color: #17221c;
  font-size: 13px;
  font-weight: 900;
}

.ops-reservation-card li span,
.ops-reservation-card li.is-empty {
  color: rgba(23, 34, 28, 0.52);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.ops-onboarding {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  border-radius: 28px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 205, 169, 0.28), transparent 34%),
    linear-gradient(135deg, #17221c, #304b3a);
}

.ops-onboarding-copy {
  display: grid;
  align-content: center;
}

.ops-onboarding-copy span {
  color: #d8cda9;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-onboarding-copy h2 {
  max-width: 520px;
  margin: 14px 0 0;
  color: #ffffff;
  font-family: var(--title-font);
  font-size: clamp(50px, 6vw, 98px);
  font-weight: 400;
  line-height: 0.86;
}

.ops-onboarding-copy p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.ops-listing-form {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.ops-type-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ops-type-toggle label {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 15px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.ops-type-toggle input {
  width: 16px;
  height: 16px;
  accent-color: #d8cda9;
}

.ops-type-toggle strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.ops-type-toggle span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.ops-listing-form .ops-form input,
.ops-listing-form input,
.ops-listing-form select,
.ops-listing-form textarea {
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  color-scheme: dark;
}

.ops-listing-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.ops-listing-form [hidden] {
  display: none;
}

.ops-onboarding-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.ops-onboarding-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 17px;
  color: #17221c;
  background: #d8cda9;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.ops-onboarding-actions p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.ops-intake-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ops-intake-card,
.ops-intake-empty {
  border-radius: 18px;
  padding: 16px;
  background: #f8f6f1;
}

.ops-intake-card span {
  color: #9b8557;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-intake-card strong,
.ops-intake-empty strong {
  display: block;
  margin-top: 8px;
  color: #17221c;
  font-size: 16px;
  font-weight: 900;
}

.ops-intake-card small,
.ops-intake-empty span {
  display: block;
  margin-top: 8px;
  color: rgba(23, 34, 28, 0.54);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.ops-intake-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.ops-intake-card b,
.ops-intake-card em {
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.ops-intake-card b {
  color: #17221c;
}

.ops-intake-card em {
  color: #688271;
}

.ops-message-access,
.ops-inbox-panel {
  overflow: hidden;
}

.ops-message-access-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 12px;
}

.ops-message-link-card {
  overflow: hidden;
  border-radius: 20px;
  background: #f8f6f1;
}

.ops-message-link-card img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.ops-message-link-card div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.ops-message-link-card span {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 9px;
  color: #17221c;
  background: #d8cda9;
  font-size: 10px;
  font-weight: 900;
}

.ops-message-link-card strong {
  color: #17221c;
  font-size: 15px;
  font-weight: 900;
}

.ops-message-link-card p {
  margin: 0;
  min-height: 38px;
  color: rgba(23, 34, 28, 0.56);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.ops-message-link-card a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: #17221c;
  font-size: 12px;
  font-weight: 900;
}

.ops-inbox-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(420px, 1fr) minmax(260px, 0.46fr);
  gap: 16px;
  align-items: stretch;
}

.ops-inbox-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.ops-inbox-item {
  display: grid;
  gap: 6px;
  width: 100%;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 18px;
  padding: 14px;
  background: #f8f6f1;
  text-align: left;
  cursor: pointer;
}

.ops-inbox-item.is-active {
  border-color: #688271;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(23, 34, 28, 0.08);
}

.ops-inbox-item.needs-reply span {
  background: #17221c;
  color: #ffffff;
}

.ops-inbox-item span,
.ops-thread-head span,
.ops-inbox-side span {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 9px;
  color: #17221c;
  background: #d8cda9;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-inbox-item strong {
  color: #17221c;
  font-size: 16px;
  font-weight: 900;
}

.ops-inbox-item small,
.ops-inbox-item p,
.ops-thread-head p,
.ops-inbox-side p,
.ops-inbox-side li {
  color: rgba(23, 34, 28, 0.56);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.5;
}

.ops-inbox-item p {
  margin: 0;
}

.ops-thread-card {
  display: grid;
  grid-template-rows: auto auto minmax(280px, 1fr) auto auto;
  gap: 14px;
  border-radius: 22px;
  padding: 18px;
  background: #f8f6f1;
}

.ops-thread-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.ops-thread-head h3,
.ops-inbox-side h3 {
  margin: 10px 0 0;
  color: #17221c;
  font-family: var(--title-font);
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 400;
  line-height: 0.9;
}

.ops-thread-head p {
  margin: 10px 0 0;
}

.ops-thread-head > strong {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 11px;
  color: #17221c;
  background: #d8cda9;
  font-size: 11px;
  font-weight: 900;
}

.ops-thread-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ops-thread-tools label,
.ops-reply-box label {
  display: grid;
  gap: 6px;
  color: rgba(23, 34, 28, 0.56);
  font-size: 11px;
  font-weight: 900;
}

.ops-thread-tools select,
.ops-reply-box textarea {
  width: 100%;
  border: 1px solid rgba(23, 34, 28, 0.1);
  border-radius: 14px;
  padding: 12px;
  color: #17221c;
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.ops-message-thread {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  max-height: 420px;
  padding-right: 4px;
}

.ops-message {
  max-width: 82%;
  border-radius: 18px;
  padding: 12px 14px;
  background: #ffffff;
}

.ops-message.team {
  justify-self: end;
  color: #ffffff;
  background: #688271;
}

.ops-message.internal {
  border: 1px dashed rgba(23, 34, 28, 0.18);
  background: rgba(216, 205, 169, 0.24);
}

.ops-message span {
  display: block;
  margin-bottom: 6px;
  color: inherit;
  opacity: 0.62;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-message p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.ops-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ops-quick-replies button,
.ops-reply-box button {
  min-height: 38px;
  border: 1px solid rgba(23, 34, 28, 0.12);
  border-radius: 999px;
  padding: 0 13px;
  color: #17221c;
  background: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.ops-reply-box {
  display: grid;
  gap: 10px;
}

.ops-reply-box div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.ops-reply-box button[type="submit"] {
  color: #ffffff;
  background: #17221c;
}

.ops-inbox-side {
  border-radius: 22px;
  padding: 18px;
  background: #17221c;
}

.ops-inbox-side h3,
.ops-inbox-side p,
.ops-inbox-side li {
  color: #ffffff;
}

.ops-inbox-side p,
.ops-inbox-side li {
  color: rgba(255, 255, 255, 0.62);
}

.ops-inbox-side ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ops-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(620px, 1fr);
  gap: 22px;
  align-items: start;
}

.ops-form-panel {
  min-width: 0;
}

.ops-panel {
  padding: 22px;
}

.ops-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.ops-panel-head.compact {
  margin-bottom: 14px;
}

.ops-panel-head h2,
.ops-box-head h3,
.ops-selected-card h2 {
  margin: 0;
  color: #17221c;
  font-family: var(--title-font);
  font-size: clamp(34px, 3.3vw, 58px);
  font-weight: 400;
  line-height: 0.9;
}

.ops-panel-head p {
  max-width: 520px;
  margin: 0;
  line-height: 1.55;
}

.ops-property-grid {
  display: grid;
  gap: 12px;
}

.ops-property-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 18px;
  padding: 10px;
  background: #f8f6f1;
  text-align: left;
  cursor: pointer;
}

.ops-property-card img {
  grid-row: span 3;
  width: 88px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
}

.ops-property-card span {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 9px;
  color: #17221c;
  background: rgba(216, 205, 169, 0.72);
  font-size: 10px;
  font-weight: 900;
}

.ops-property-card strong {
  color: #17221c;
  font-size: 15px;
  font-weight: 900;
}

.ops-property-card.is-active {
  border-color: #688271;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(23, 34, 28, 0.08);
}

.ops-property-card.is-submitted span {
  color: #ffffff;
  background: #688271;
}

.ops-mini-calendar {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  border-top: 1px solid rgba(23, 34, 28, 0.08);
  padding-top: 18px;
}

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

.ops-calendar-head strong {
  color: #17221c;
  font-size: 14px;
  font-weight: 900;
}

.ops-calendar-head span,
.ops-calendar-legend span {
  color: rgba(23, 34, 28, 0.5);
  font-size: 11px;
  font-weight: 900;
}

.ops-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-calendar-legend span {
  position: relative;
  padding-left: 15px;
}

.ops-calendar-legend span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(23, 34, 28, 0.14);
  transform: translateY(-50%);
}

.ops-calendar-legend .booked::before {
  background: #688271;
}

.ops-calendar-legend .blocked::before {
  background: #d8cda9;
}

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

.ops-calendar-day {
  display: grid;
  gap: 2px;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 12px;
  color: #17221c;
  background: #ffffff;
  font: inherit;
}

.ops-calendar-day span {
  color: rgba(23, 34, 28, 0.44);
  font-size: 9px;
  font-weight: 900;
}

.ops-calendar-day strong {
  font-size: 13px;
  font-weight: 900;
}

.ops-calendar-day.is-booked {
  color: #ffffff;
  background: #688271;
}

.ops-calendar-day.is-booked span {
  color: rgba(255, 255, 255, 0.7);
}

.ops-calendar-day.is-blocked {
  background: #d8cda9;
}

.ops-form {
  display: grid;
  gap: 18px;
}

.ops-issue-gate {
  border: 0;
  border-radius: 22px;
  padding: 18px;
  background: #f8f6f1;
}

.ops-issue-gate legend {
  margin-bottom: 14px;
  color: #17221c;
  font-family: var(--title-font);
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 400;
  line-height: 0.9;
}

.ops-issue-gate > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ops-issue-gate label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 18px;
  padding: 14px;
  background: #ffffff;
  cursor: pointer;
}

.ops-issue-gate input {
  grid-row: span 2;
  width: 18px;
  height: 18px;
  accent-color: #688271;
}

.ops-issue-gate strong {
  color: #17221c;
  font-size: 15px;
  font-weight: 900;
}

.ops-issue-gate span {
  color: rgba(23, 34, 28, 0.55);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.ops-conditional-details {
  display: grid;
  gap: 18px;
}

.ops-conditional-details[hidden] {
  display: none;
}

.ops-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ops-field-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ops-form label,
.ops-checklist legend {
  display: grid;
  gap: 8px;
  color: rgba(23, 34, 28, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.ops-form input,
.ops-form select,
.ops-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 34, 28, 0.1);
  border-radius: 14px;
  padding: 13px 14px;
  color: #17221c;
  background: #f8f6f1;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.ops-form textarea {
  resize: vertical;
}

.ops-checklist {
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.ops-checklist div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.ops-checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #17221c;
}

.ops-checklist input {
  width: 16px;
  height: 16px;
  accent-color: #688271;
}

.ops-expense-box {
  border-radius: 20px;
  padding: 16px;
  background: #f8f6f1;
}

.ops-box-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.ops-box-head h3 {
  font-size: 34px;
}

.ops-box-head button,
.ops-form-actions button {
  min-height: 42px;
  border: 1px solid rgba(23, 34, 28, 0.12);
  border-radius: 999px;
  padding: 0 15px;
  color: #17221c;
  background: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

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

.ops-expense-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(90px, 0.5fr) minmax(140px, 1fr) 36px;
  gap: 8px;
}

.ops-expense-row button {
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #17221c;
  font-size: 18px;
  cursor: pointer;
}

.ops-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.ops-form-actions button[type="submit"] {
  color: #ffffff;
  background: #688271;
}

.ops-live-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 0.7fr) minmax(280px, 0.55fr) minmax(320px, 0.75fr);
  gap: 16px;
}

.ops-selected-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

.ops-selected-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.ops-selected-card div {
  display: grid;
  align-content: center;
  padding: 20px;
}

.ops-selected-card span {
  color: #9b8557;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-selected-card p {
  margin: 12px 0 0;
  color: rgba(23, 34, 28, 0.58);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.ops-feed-list,
.ops-submission-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ops-feed-list li,
.ops-submission-row {
  border-bottom: 1px solid rgba(23, 34, 28, 0.08);
  padding-bottom: 10px;
  color: rgba(23, 34, 28, 0.7);
  font-size: 13px;
  font-weight: 850;
}

.ops-submission-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 4px;
  align-items: center;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 34, 28, 0.08);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.ops-submission-row span {
  justify-self: start;
  border-radius: 999px;
  padding: 4px 8px;
  color: rgba(23, 34, 28, 0.58);
  background: #f8f6f1;
  font-size: 10px;
  font-weight: 900;
}

.ops-submission-row strong {
  color: #17221c;
  font-size: 14px;
  font-weight: 900;
}

.ops-submission-row small {
  grid-column: 2;
}

.ops-submission-row.is-done span {
  color: #ffffff;
  background: #688271;
}

.ops-submission-row.is-draft span {
  color: #17221c;
  background: #d8cda9;
}

@media (max-width: 980px) {
  .hero-panel {
    min-height: 780px;
    height: 90svh;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.5) 67%, rgba(255, 255, 255, 0.9) 84%, #ffffff 96%, #ffffff 100%),
      url("/assets/hero-image-2.png");
    background-position: 48% center;
  }

  .nav,
  .listing-nav {
    grid-template-columns: 1fr auto;
    width: calc(100% - 36px);
    padding: 18px 0;
  }

  .brand img {
    width: 128px;
    max-height: 48px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions a:first-child {
    display: none;
  }

  .hero-copy {
    left: 50%;
    right: auto;
    top: 108px;
    width: min(330px, calc(100% - 36px));
    transform: translateX(-50%);
    text-align: center;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 42px;
    line-height: 1.05;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-proof {
    gap: 10px;
    padding: 7px 12px 7px 7px;
  }

  .hero-proof-avatars img {
    width: 34px;
    height: 34px;
    border-width: 2px;
  }

  .hero-proof-copy strong {
    font-size: 23px;
  }

  .managed-landing-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(23, 34, 28, 0.94) 0%, rgba(23, 34, 28, 0.82) 58%, rgba(23, 34, 28, 0.52) 100%),
      url("/assets/section-3.png");
    background-size: cover;
    background-position: center;
  }

  .managed-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    width: calc(100% - 36px);
    min-height: auto;
    padding: 70px 0 74px;
  }

  .managed-hero-copy h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .managed-hero-copy p {
    font-size: 17px;
  }

  .managed-hero-panel {
    border-radius: 22px;
  }

  .managed-hero-panel span {
    padding: 18px 20px;
  }

  .managed-owner-section,
  .managed-page-comparison,
  .managed-process-section,
  .managed-faq-section {
    padding: 72px 20px;
  }

  .managed-owner-intro,
  .managed-page-heading,
  .managed-contact-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .managed-owner-intro h2,
  .managed-page-heading h2,
  .managed-contact-section h2 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .managed-owner-intro p,
  .managed-contact-section p {
    font-size: 16px;
  }

  .managed-minimal-grid,
  .managed-process-list {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .managed-minimal-grid article,
  .managed-process-list article {
    flex: 0 0 min(82vw, 360px);
    min-height: 260px;
    padding: 28px 26px 28px 0;
    border-right: 1px solid rgba(23, 34, 28, 0.12);
    scroll-snap-align: start;
  }

  .managed-minimal-grid article + article {
    padding-left: 26px;
  }

  .managed-process-list article + article {
    padding-left: 26px;
  }

  .managed-process-list span {
    margin-bottom: 48px;
  }

  .managed-contact-section {
    padding: 72px 20px;
  }

  .owner-fit-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(23, 34, 28, 0.94) 0%, rgba(23, 34, 28, 0.8) 62%, rgba(23, 34, 28, 0.5) 100%),
      url("/assets/section-3.png");
    background-size: cover;
    background-position: center;
  }

  .owner-fit-hero-inner,
  .owner-fit-intro,
  .owner-fit-form-head,
  .owner-fit-step,
  .owner-fit-map-wrap {
    grid-template-columns: 1fr;
  }

  .owner-fit-hero-inner {
    gap: 34px;
    width: calc(100% - 36px);
    min-height: auto;
    padding: 62px 0 72px;
  }

  .owner-fit-copy h1 {
    font-size: 64px;
  }

  .owner-fit-copy p,
  .owner-fit-intro-copy p,
  .owner-fit-form-head p {
    font-size: 15px;
  }

  .owner-fit-video {
    border-radius: 22px;
  }

  .owner-fit-video h2 {
    font-size: 38px;
  }

  .owner-fit-intro,
  .owner-fit-questionnaire {
    padding: 72px 20px;
  }

  .owner-fit-intro h2,
  .owner-fit-form-head h2 {
    font-size: 54px;
  }

  .owner-fit-step {
    gap: 24px;
    border-radius: 22px;
    padding: 22px 18px;
  }

  .owner-fit-step h3 {
    font-size: 38px;
  }

  .owner-fit-fields.two,
  .owner-fit-fields.three {
    grid-template-columns: 1fr;
  }

  .owner-fit-map-wrap {
    grid-column: auto;
  }

  .owner-fit-map {
    min-height: 230px;
  }

  .owner-fit-result {
    padding: 22px 18px;
  }

  .owner-fit-result strong {
    font-size: 36px;
  }

  .reviews-section,
  .split-section,
  .managed-section,
  .performance-section,
  .designed-section,
  .stays-section,
  .faq-section,
  .gallery-band {
    padding: 62px 20px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-inline: 20px;
    padding: 62px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 62px 20px;
  }

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

  .footer-meta {
    flex-direction: column;
  }

  .reviews-heading,
  .section-head,
  .managed-intro,
  .performance-head,
  .designed-head,
  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .designed-head {
    margin-bottom: 26px;
  }

  .designed-head p {
    font-size: 15px;
  }

  .designed-carousel {
    gap: 18px;
    margin-inline: -20px;
    padding: 0 48px 14px 20px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 54px), transparent 100%);
  }

  .designed-carousel::-webkit-scrollbar {
    display: none;
  }

  .designed-card {
    flex-basis: min(84vw, 360px);
  }

  .designed-placeholder {
    aspect-ratio: 1.35 / 1;
  }

  .managed-intro {
    margin-bottom: 26px;
  }

  .managed-intro span {
    grid-column: auto;
    margin-bottom: 0;
  }

  .managed-intro p {
    font-size: 15px;
  }

  .managed-table-wrap {
    margin-inline: -20px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    overflow: visible;
    background: transparent;
  }

  .managed-table {
    display: block;
    min-width: 0;
    background: transparent;
  }

  .managed-table thead {
    display: none;
  }

  .managed-table tbody {
    display: grid;
    gap: 12px;
    padding: 0 20px;
  }

  .managed-table tr {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(216, 205, 169, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(16, 24, 20, 0.08);
  }

  .managed-table th,
  .managed-table td {
    display: grid;
    grid-template-columns: minmax(92px, 0.42fr) 1fr;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid rgba(23, 34, 28, 0.08);
    padding: 12px 14px;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
  }

  .managed-table td::before {
    color: rgba(23, 34, 28, 0.52);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .managed-table td:nth-child(1) {
    grid-template-columns: 1fr;
    padding: 15px 14px;
    color: #ffffff;
    background: #17221c;
    font-size: 14px;
  }

  .managed-table td:nth-child(1)::before {
    content: none;
  }

  .managed-table td:nth-child(2)::before {
    content: "Traditional";
  }

  .managed-table td:nth-child(3)::before {
    content: "Sokoun";
    color: var(--gold);
  }

  .managed-table td:last-child {
    border-bottom: 0;
  }

  .performance-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .performance-card {
    border-radius: 20px;
    padding: 22px 18px 20px;
  }

  .performance-card h3 {
    font-size: 22px;
  }

  .performance-legend {
    margin-bottom: 14px;
  }

  .performance-period {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .performance-stat {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .mini-line-chart {
    min-height: 210px;
  }

  .chart-tag {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .sukun-tag {
    right: 16px;
    top: 34px;
  }

  .traditional-tag {
    right: 8px;
    top: 126px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head-copy {
    padding-bottom: 0;
  }

  .review-marquee {
    margin-inline: -20px;
  }

  .review-pill,
  .review-pill:hover {
    width: 330px;
    min-height: 134px;
  }

  .property-grid,
  .gallery-band {
    grid-template-columns: 1fr;
  }

  .property-grid {
    display: flex;
    gap: 14px;
    margin-inline: -20px;
    overflow-x: auto;
    padding: 0 20px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

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

  .property-card {
    flex: 0 0 min(92vw, 520px);
    scroll-snap-align: start;
  }

  .property-card {
    height: 360px;
    aspect-ratio: 1.08 / 1;
    border-radius: 24px;
  }

  .property-info {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 18px;
  }

  .property-info h3 {
    font-size: 21px;
  }

  .property-topline {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .gallery-band img {
    height: 260px;
  }

  .faq-section h2 {
    margin-bottom: 22px;
  }

  .faq-question {
    grid-template-columns: 34px 1fr 18px;
    gap: 14px;
    min-height: 72px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer {
    padding: 6px 0 24px 48px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .listing-hero,
  .listing-body {
    width: calc(100% - 36px);
  }

  .listing-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .listing-nav .nav-links {
    display: none;
  }

  .listing-title,
  .listing-body {
    grid-template-columns: 1fr;
  }

  .listing-gallery {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .listing-gallery img,
  .listing-gallery img:first-child,
  .gallery-stack img:first-child,
  .gallery-stack img:last-child {
    height: 260px;
    border-radius: 18px;
  }

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

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

  .booking-panel {
    position: static;
  }

  .nest-nav {
    width: calc(100% - 36px);
    padding: 18px 0;
  }

  .nest-hero {
    min-height: 620px;
    padding-top: 88px;
  }

  .breadcrumb,
  .nest-hero-copy {
    width: calc(100% - 36px);
  }

  .breadcrumb {
    padding-top: 18px;
    font-size: 13px;
  }

  .nest-hero-copy {
    padding-top: 142px;
  }

  .nest-hero-copy h1 {
    font-size: 42px;
  }

  .show-photos {
    left: 18px;
    bottom: 118px;
    min-height: 50px;
    padding: 0 20px;
  }

  .booking-strip {
    position: relative;
    bottom: auto;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: calc(100% - 36px);
    margin: -78px auto 36px;
    padding: 16px;
    border-radius: 20px;
  }

  .booking-strip div,
  .booking-strip label {
    min-height: 48px;
    padding: 0;
    border-right: 0;
  }

  .booking-strip span {
    font-size: 12px;
  }

  .booking-strip strong {
    font-size: 15px;
  }

  .booking-strip input,
  .booking-strip select {
    font-size: 15px;
  }

  .booking-price {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(155, 133, 87, 0.18);
    padding-top: 10px;
  }

  .booking-strip a {
    grid-column: 1 / -1;
    min-height: 50px;
  }

  .nest-overview,
  .nest-amenities,
  .project-section,
  .rules-section,
  .location-section {
    padding: 62px 20px;
  }

  .listing-reviews-section {
    padding: 62px 28px;
  }

  .nest-overview,
  .nest-amenities,
  .location-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nest-overview > img,
  .nest-amenities > img {
    height: 320px;
  }

  .overview-copy p,
  .project-grid p,
  .rules-grid p,
  .location-copy p {
    font-size: 15px;
  }

  .spec-list div {
    min-height: 62px;
  }

  .spec-list span,
  .spec-list strong {
    font-size: 15px;
  }

  .nest-amenities ul,
  .project-grid,
  .listing-review-grid,
  .rules-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .listing-reviews-head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .listing-reviews-head p {
    margin-bottom: 0;
    white-space: normal;
  }

  .listing-review-card {
    min-height: 0;
    padding: 20px;
  }

  .listing-review-card p {
    font-size: 14px;
  }

  .project-grid img {
    aspect-ratio: 1.35 / 1;
    margin-bottom: 18px;
  }

  .map-panel {
    min-height: 340px;
  }

  .location-copy {
    padding: 12px 0 0;
  }

  .dashboard-shell {
    display: block;
    width: min(100% - 24px, 1320px);
    padding-top: 12px;
  }

  .dashboard-sidebar {
    position: static;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .dashboard-brand {
    width: 128px;
  }

  .dashboard-sidebar nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .dashboard-sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .dashboard-sidebar nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .dashboard-sidebar-note {
    display: none;
  }

  .dashboard-main {
    gap: 18px;
    padding: 18px 0 0;
  }

  .dashboard-topbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 16px;
  }

  .dashboard-top-actions {
    justify-content: flex-start;
  }

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

  .earnings-overview {
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 22px;
    padding: 22px;
  }

  .earnings-copy h2 {
    max-width: 420px;
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.9;
  }

  .earnings-copy strong {
    font-size: clamp(52px, 16vw, 82px);
  }

  .earnings-range,
  .earnings-breakdown {
    grid-template-columns: 1fr;
  }

  .dashboard-hero {
    border-radius: 22px;
    min-height: 0;
    gap: 14px;
  }

  .dashboard-hero > img {
    order: -1;
    min-height: 260px;
    max-height: 360px;
    border-radius: 22px;
  }

  .dashboard-hero-copy {
    padding: 24px;
  }

  .dashboard-kpis {
    display: flex;
    gap: 12px;
    margin-inline: 0;
    border-radius: 22px;
    overflow-x: auto;
    padding: 14px;
    scroll-snap-type: x mandatory;
  }

  .dashboard-kpis::-webkit-scrollbar {
    display: none;
  }

  .dashboard-kpi {
    flex: 0 0 min(72vw, 260px);
    min-height: 144px;
    border-left: 0;
    scroll-snap-align: start;
  }

  .dashboard-kpi + .dashboard-kpi {
    border-left: 0;
  }

  .guest-love-section,
  .calendar-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .guest-love-copy h2,
  .calendar-copy h2 {
    font-size: clamp(42px, 14vw, 64px);
  }

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

  .owner-calendar-card {
    padding: 16px;
    border-radius: 20px;
  }

  .owner-calendar-grid {
    gap: 6px;
  }

  .calendar-day {
    border-radius: 11px;
    font-size: 12px;
  }

  .dashboard-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .panel-head {
    display: block;
  }

  .panel-head p {
    max-width: none;
    margin-top: 10px;
  }

  .chart-row,
  .expense-month {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .dashboard-chart {
    grid-template-columns: repeat(6, minmax(62px, 1fr));
    min-height: 290px;
    overflow-x: auto;
    padding: 18px 14px;
  }

  .dashboard-chart::-webkit-scrollbar {
    display: none;
  }

  .chart-column {
    height: 250px;
  }

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

  .trend-legend {
    min-width: 0;
  }

  .line-chart {
    min-width: 640px;
  }

  .chart-row small,
  .expense-month small {
    grid-column: 2 / 3;
    text-align: left;
  }

  .property-details {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .property-details dd {
    margin-bottom: 10px;
  }

  .ops-shell {
    display: block;
    width: min(100% - 24px, 1320px);
    padding-top: 12px;
  }

  .ops-sidebar,
  .ops-live-panel {
    position: static;
  }

  .ops-sidebar {
    height: auto;
    margin-bottom: 18px;
    border-radius: 22px;
    padding: 16px;
  }

  .ops-brand img {
    width: 128px;
  }

  .ops-sidebar nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .ops-sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .ops-sidebar nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .ops-sidebar-note {
    display: none;
  }

  .ops-hero,
  .ops-layout,
  .ops-onboarding,
  .ops-inbox-layout,
  .ops-master-overview,
  .ops-overview,
  .ops-reservation-grid,
  .ops-message-access-grid,
  .ops-type-toggle,
  .ops-intake-list,
  .ops-thread-tools,
  .ops-issue-gate > div,
  .ops-field-grid,
  .ops-field-grid.three,
  .ops-checklist div {
    grid-template-columns: 1fr;
  }

  .ops-hero h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .ops-date-card {
    min-width: 0;
  }

  .ops-panel {
    border-radius: 22px;
    padding: 18px;
  }

  .ops-layout {
    gap: 18px;
  }

  .ops-expense-row {
    grid-template-columns: 1fr;
  }

  .ops-expense-row button {
    width: 38px;
    height: 38px;
  }

  .ops-calendar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ops-focus-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ops-key-figures > div {
    grid-template-columns: 1fr;
  }

  .ops-thread-card {
    grid-template-rows: auto;
  }

  .ops-thread-head,
  .ops-reply-box div {
    display: grid;
    justify-content: stretch;
  }

  .ops-message {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .review-track {
    animation: none;
  }

  .lux-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .lux-word {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
