:root {
  --espresso: #2b2420;
  --ink: #181411;
  --taupe: #a58f7a;
  --taupe-deep: #8e7460;
  --sand: #e6dac7;
  --cream: #f7f3ef;
  --warm-white: #fdfaf7;
  --line: #ded2c3;
  --soft-shadow: 0 18px 55px rgba(62, 44, 30, 0.10);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  min-height: 141px;
  padding: 24px clamp(28px, 5.6vw, 94px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(165, 143, 122, 0.22);
}
.brand { display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0; color: var(--espresso); }
.brand-mark { width: 55px; height: 62px; color: var(--taupe-deep); }
.brand-copy { display: grid; gap: 4px; }
.brand-name { font-family: var(--serif); font-size: clamp(24px, 2.1vw, 35px); line-height: 0.95; letter-spacing: -0.045em; }
.brand-tagline { color: var(--taupe-deep); font-size: 11px; letter-spacing: .20em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.45vw, 46px); font-weight: 600; font-size: 15px; }
.site-nav a:not(.nav-cta) { padding: 9px 0; position: relative; }
.site-nav a.active { color: var(--taupe-deep); }
.site-nav a.active::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--taupe-deep); }
.nav-cta, .strip-cta { background: var(--taupe-deep); color: white; padding: 15px 23px; border-radius: 9px; box-shadow: 0 9px 18px rgba(96, 72, 51, .14); transition: .2s ease; }
.nav-cta:hover, .strip-cta:hover { background: var(--espresso); transform: translateY(-1px); }

.home-hero {
  min-height: 479px;
  position: relative;
  overflow: hidden;
  padding: 74px 24px 59px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(106deg, #c9b5a1 0%, #b79f89 46%, #ab927b 100%);
  border-bottom: 1px solid rgba(43, 36, 32, .15);
}
.home-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 32%, rgba(255,255,255,.2), transparent 37%), linear-gradient(105deg, rgba(255,255,255,.14), transparent 48%); }
.hero-house { position: absolute; width: min(56vw, 820px); min-width: 610px; right: -30px; bottom: -57px; color: rgba(249, 242, 234, .42); z-index: 0; }
.hero-house svg { display: block; width: 100%; height: auto; fill: none; stroke: currentColor; stroke-width: 4.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-content { position: relative; z-index: 1; max-width: 1000px; }
.eyebrow { display: none; }
.home-hero h1 { margin: 0; color: #15110f; font-family: var(--serif); font-size: clamp(44px, 6.1vw, 84px); font-weight: 500; line-height: 1.06; letter-spacing: -.055em; }
.home-hero h1 span { color: #765942; }
.home-hero h1::after { content: ""; display: block; width: 62px; height: 2px; margin: 22px auto 17px; background: rgba(71, 52, 38, .55); }
.hero-copy { max-width: 570px; margin: 0 auto 29px; font-size: 22px; line-height: 1.45; letter-spacing: .005em; }
.home-search { width: min(100%, 820px); margin: 0 auto; padding: 7px 8px 7px 28px; min-height: 81px; display: flex; align-items: center; gap: 18px; background: rgba(255, 253, 250, .97); border: 1px solid rgba(84, 65, 49, .28); border-radius: 14px; box-shadow: 0 13px 24px rgba(52, 40, 28, .12); }
.search-icon { flex: 0 0 auto; width: 33px; height: 33px; fill: none; stroke: var(--espresso); stroke-width: 2.1; stroke-linecap: round; }
.home-search input { min-width: 0; flex: 1; border: 0; outline: none; background: transparent; color: var(--espresso); font-size: 20px; }
.home-search input::placeholder { color: #847568; opacity: 1; }
.home-search button { border: 0; padding: 20px 47px; border-radius: 10px; background: var(--espresso); color: white; font-weight: 700; font-size: 20px; transition: .2s ease; }
.home-search button:hover { background: #0e0b09; transform: translateY(-1px); }
.search-message { min-height: 21px; margin: 9px 0 0; color: #4b392c; font-size: 14px; font-weight: 600; }

.benefits { display: grid; grid-template-columns: repeat(3, 1fr); padding: 29px clamp(28px, 9vw, 185px) 34px; background: var(--warm-white); }
.benefit-card { text-align: center; padding: 0 clamp(24px, 4.5vw, 86px); min-height: 229px; display: flex; align-items: center; flex-direction: column; }
.benefit-card + .benefit-card { border-left: 1px solid var(--line); }
.benefit-icon { width: 91px; height: 91px; margin-bottom: 13px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, #efe5dc, #e8ddd2); box-shadow: inset 0 0 0 1px rgba(165,143,122,.08); }
.benefit-icon svg { width: 46px; height: 46px; fill: none; stroke: var(--espresso); stroke-width: 1.85; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h2 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(21px, 2.1vw, 30px); font-weight: 500; letter-spacing: -.035em; }
.benefit-card p { margin: 0; font-size: 16px; line-height: 1.55; }
.mini-rule { display: block; width: 42px; height: 2px; margin-top: 17px; background: var(--taupe-deep); }

.community-strip { min-height: 91px; padding: 20px clamp(28px, 9vw, 185px); display: flex; gap: 25px; align-items: center; justify-content: center; background: #f2eae2; border-top: 1px solid rgba(165,143,122,.2); font-size: 17px; }
.community-icon { width: 43px; height: 43px; border-radius: 50%; display: grid; place-items: center; background: #e6d9cc; }
.community-icon svg { width: 25px; height: 25px; fill: none; stroke: var(--espresso); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.community-strip strong { font-size: 18px; }
.community-strip p { margin: 0; }
.community-divider { height: 31px; width: 1px; background: #c7b6a5; }
.strip-cta { margin-left: auto; white-space: nowrap; }
.site-footer { padding: 28px 24px; text-align: center; background: var(--espresso); color: rgba(255,255,255,.84); font-size: 13px; letter-spacing: .08em; }
.site-footer p { margin: 0; }

/* Shared interior-page styles */
.inner-page { min-height: 100vh; background: #f6f1eb; }
.page-shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 58px 0 80px; }
.breadcrumb { color: var(--taupe-deep); font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.page-title { margin: 12px 0 8px; font-family: var(--serif); font-size: clamp(38px, 5vw, 62px); font-weight: 500; letter-spacing: -.045em; }
.page-subtitle { margin: 0; color: #685a4d; font-size: 18px; line-height: 1.5; }
.panel { background: var(--warm-white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 30px rgba(48,35,25,.06); }

.property-hero { padding: 38px; margin-top: 30px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; background: linear-gradient(105deg, #c9b5a1, #ae957f); }
.property-hero .address-label { font-size: 14px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: rgba(43,36,32,.7); }
.property-hero h1 { margin: 7px 0 0; font-family: var(--serif); font-size: clamp(36px, 5vw, 58px); font-weight: 500; letter-spacing: -.05em; }
.rating-pill { padding: 16px 20px; border-radius: 14px; background: rgba(255,253,250,.86); text-align: center; min-width: 154px; }
.rating-pill strong { display: block; font-size: 32px; color: var(--espresso); }
.rating-pill span { font-size: 13px; color: #675849; }
.property-grid { display: grid; grid-template-columns: .94fr 1.4fr; gap: 24px; margin-top: 24px; }
.scorecard { padding: 30px; }
.scorecard h2, .reviews-heading { margin: 0 0 24px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.score-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid #e8dfd5; font-weight: 600; }
.score-row span:last-child { color: var(--taupe-deep); }
.review-list { display: grid; gap: 16px; }
.review-card { padding: 25px; }
.review-card-top { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.review-stars { color: #8f6e50; letter-spacing: .08em; font-size: 18px; }
.review-date { color: #8c7c6e; font-size: 13px; }
.review-landlord { margin: 12px 0 5px; font-size: 15px; color: #5d4e41; }
.review-text { margin: 0; line-height: 1.65; font-size: 16px; }
.empty-reviews { padding: 32px; text-align: center; color: #78695c; }
.page-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.button-primary, .button-secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 21px; border-radius: 10px; font-weight: 700; }
.button-primary { background: var(--espresso); color: white; border: 1px solid var(--espresso); }
.button-secondary { background: transparent; color: var(--espresso); border: 1px solid var(--taupe-deep); }

.review-form { width: min(760px, 100%); padding: 34px; margin-top: 30px; }
.address-note { margin: 0 0 25px; padding: 15px 17px; border-radius: 12px; background: #efe5dc; color: #594a3e; line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #d8cab9; background: #fffdfb; color: var(--espresso); border-radius: 10px; padding: 14px 15px; outline: none; }
.rating-hint { display: block; margin-top: -1px; color: #8a796b; font-size: 11px; line-height: 1.38; }
.form-field textarea { min-height: 170px; resize: vertical; line-height: 1.55; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--taupe-deep); box-shadow: 0 0 0 3px rgba(165,143,122,.18); }
.form-submit { margin-top: 24px; width: 100%; min-height: 56px; border: 0; border-radius: 10px; background: var(--espresso); color: white; font-weight: 700; font-size: 17px; }
.form-submit:hover { background: #0e0b09; }
.form-error { min-height: 22px; color: #9b2f27; font-weight: 600; margin: 11px 0 0; }

@media (max-width: 940px) {
  .site-header { min-height: auto; flex-direction: column; align-items: flex-start; }
  .site-nav { width: 100%; justify-content: space-between; gap: 13px; flex-wrap: wrap; }
  .hero-house { opacity: .68; right: -168px; }
  .benefits { padding-inline: 30px; }
  .benefit-card { padding-inline: 25px; }
  .community-strip { flex-wrap: wrap; justify-content: flex-start; }
  .strip-cta { margin-left: 0; }
  .property-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 20px 22px; }
  .brand-name { font-size: 27px; }
  .brand-mark { width: 45px; height: 53px; }
  .site-nav { font-size: 13px; }
  .nav-cta { padding: 10px 13px; }
  .home-hero { min-height: 508px; padding: 58px 20px 45px; }
  .hero-house { width: 780px; right: -402px; bottom: -59px; opacity: .43; }
  .home-hero h1 { font-size: 48px; }
  .hero-copy { font-size: 18px; }
  .home-search { min-height: 69px; padding-left: 17px; gap: 10px; }
  .search-icon { width: 26px; height: 26px; }
  .home-search input { font-size: 16px; }
  .home-search button { padding: 16px 17px; font-size: 16px; }
  .benefits { grid-template-columns: 1fr; padding: 24px 24px 12px; }
  .benefit-card { min-height: auto; padding: 27px 15px 33px; }
  .benefit-card + .benefit-card { border-left: 0; border-top: 1px solid var(--line); }
  .community-strip { padding: 22px 25px; gap: 14px; }
  .community-divider { display: none; }
  .community-strip p { width: 100%; }
  .property-hero { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
}

/* Version 5 — property report + review flow */
.property-shell, .review-shell { padding-top: 44px; }
.back-link { display: inline-flex; margin-bottom: 24px; color: #6d5641; font-weight: 700; font-size: 14px; }
.back-link:hover { color: var(--espresso); }
.section-label { margin: 0 0 8px; color: #82684f; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.property-summary { display: grid; grid-template-columns: minmax(0,1fr) 220px; gap: 32px; align-items: end; padding: 42px; border: 1px solid rgba(78,57,40,.15); border-radius: 20px; background: linear-gradient(115deg, #d6c4b2 0%, #b79e88 100%); box-shadow: 0 18px 42px rgba(58,42,31,.11); }
.property-summary h1 { margin: 0; color: #1f1813; font-family: var(--serif); font-size: clamp(40px,5.3vw,68px); font-weight: 500; letter-spacing: -.055em; line-height: 1.04; }
.property-intro { max-width: 660px; margin: 17px 0 0; color: rgba(31,24,19,.84); font-size: 18px; line-height: 1.55; }
.property-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 19px; color: #4f3c2e; font-size: 14px; font-weight: 700; }
.verified-chip { padding: 7px 10px; border-radius: 999px; background: rgba(255,253,250,.64); }
.overall-card { padding: 24px 20px; text-align: center; border-radius: 16px; background: rgba(255,253,250,.9); box-shadow: 0 10px 25px rgba(48,35,25,.1); }
.overall-label { display: block; margin-bottom: 8px; color: #6b5745; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.overall-number { display: block; color: var(--espresso); font-family: var(--serif); font-size: 53px; font-weight: 500; line-height: 1; }
.stars-display { display: block; margin: 10px 0 8px; color: #9a7654; letter-spacing: .08em; font-size: 18px; }
.overall-caption { display: block; color: #746556; font-size: 13px; }

.property-content-grid { display: grid; grid-template-columns: minmax(300px,.9fr) minmax(0,1.45fr); gap: 28px; margin-top: 28px; align-items: start; }
.scorecard { padding: 29px; position: sticky; top: 22px; }
.scorecard-title-row { display: flex; gap: 14px; justify-content: space-between; align-items: start; margin-bottom: 18px; }
.scorecard h2, .reviews-section h2, .share-card h2, .review-heading-wrap h1, .form-section-heading h2 { margin: 0; color: var(--espresso); font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
.scorecard h2, .reviews-section h2 { font-size: 31px; }
.scorecard-note { max-width: 95px; color: #89796b; font-size: 11px; line-height: 1.35; text-align: right; }
.score-list { border-top: 1px solid #e7ddd3; }
.score-item { display: flex; justify-content: space-between; gap: 12px; padding: 15px 0; border-bottom: 1px solid #e7ddd3; color: #574839; font-size: 15px; font-weight: 600; }
.score-value { color: #8c6848; white-space: nowrap; font-size: 14px; }
.rent-again-row { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding: 17px; border-radius: 12px; background: #efe6dc; color: #574839; font-size: 14px; font-weight: 700; }
.rent-again-row strong { color: var(--espresso); font-size: 17px; }

.reviews-section-header { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 18px; }
.small-button { min-height: 43px; padding: 0 15px; font-size: 14px; white-space: nowrap; }
.review-list { display: grid; gap: 16px; }
.review-card { padding: 27px; }
.review-card-top { display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.review-stars { color: #8d694b; font-size: 18px; letter-spacing: .08em; }
.review-author { margin: 8px 0 0; color: #46392e; font-size: 14px; font-weight: 700; }
.review-author span { color: #8b7b6e; font-weight: 500; }
.review-date { color: #8c7b6e; font-size: 13px; }
.review-landlord { margin: 17px 0 9px; color: #796a5d; font-size: 14px; }
.review-landlord strong { color: #4b3b2f; }
.review-text { margin: 0; color: #30271f; font-size: 16px; line-height: 1.7; white-space: pre-line; }
.review-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 21px; }
.review-tags span { padding: 7px 9px; border-radius: 999px; background: #f0e7de; color: #6b5746; font-size: 12px; font-weight: 700; }
.empty-reviews { padding: 39px 29px; text-align: center; color: #66584c; }
.empty-reviews strong { display: block; color: var(--espresso); font-family: var(--serif); font-size: 26px; font-weight: 500; }
.empty-reviews p { margin: 10px auto 20px; max-width: 430px; line-height: 1.55; }
.share-card { display: flex; gap: 32px; justify-content: space-between; align-items: center; margin-top: 33px; padding: 34px 38px; border-radius: 18px; background: #eee3d8; }
.share-card h2 { font-size: clamp(27px,3vw,37px); }
.share-card p:not(.section-label) { max-width: 650px; margin: 10px 0 0; color: #655547; line-height: 1.5; }

.review-heading-wrap { max-width: 740px; }
.review-heading-wrap h1 { font-size: clamp(40px,5.2vw,64px); line-height: 1.08; }
.review-heading-wrap > p:not(.section-label) { max-width: 710px; margin: 16px 0 0; color: #685a4d; font-size: 18px; line-height: 1.55; }
.review-form { width: min(860px,100%); padding: 0; margin-top: 34px; overflow: hidden; }
.form-section { padding: 32px; }
.form-section + .form-section { border-top: 1px solid #e7ddd3; }
.form-section-heading { display: flex; gap: 14px; align-items: start; margin-bottom: 25px; }
.step-number { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #ece0d4; color: #5d4735; font-weight: 700; font-size: 14px; }
.form-section-heading h2 { font-size: 28px; }
.form-section-heading p { margin: 5px 0 0; color: #7c6c5f; font-size: 14px; line-height: 1.45; }
.form-grid, .rating-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.rating-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: #493b2f; font-size: 14px; font-weight: 700; }
.form-field label em { color: #887869; font-weight: 500; font-style: normal; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #d8cab9; background: #fffdfb; color: var(--espresso); border-radius: 10px; padding: 14px 15px; outline: none; font: inherit; }
.form-field textarea { min-height: 178px; resize: vertical; line-height: 1.58; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--taupe-deep); box-shadow: 0 0 0 3px rgba(165,143,122,.18); }
.field-hint { color: #8c7b6e; font-size: 12px; line-height: 1.4; }
.form-error { min-height: 20px; margin: 0; padding: 0 32px; color: #9b2f27; font-size: 14px; font-weight: 700; }
.form-submit { width: calc(100% - 64px); min-height: 57px; margin: 26px 32px 32px; border: 0; border-radius: 10px; background: var(--espresso); color: white; font-weight: 700; font-size: 17px; transition: .2s ease; }
.form-submit:hover { background: #0e0b09; transform: translateY(-1px); }

@media (max-width: 820px) {
  .property-summary, .property-content-grid { grid-template-columns: 1fr; }
  .scorecard { position: static; }
  .overall-card { width: min(100%, 260px); }
  .rating-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .property-shell, .review-shell { width: min(100% - 32px,1120px); padding-top: 30px; padding-bottom: 50px; }
  .property-summary { padding: 27px 22px; border-radius: 15px; }
  .property-summary h1 { font-size: 43px; }
  .reviews-section-header { align-items: start; flex-direction: column; }
  .share-card { padding: 28px 23px; align-items: start; flex-direction: column; }
  .form-section { padding: 26px 21px; }
  .form-grid, .rating-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .form-error { padding: 0 21px; }
  .form-submit { width: calc(100% - 42px); margin: 22px 21px 24px; }
  .review-card { padding: 21px; }
}

/* Version 6 — renter photos + map preview */
.property-visuals { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 28px; margin-top: 28px; align-items: stretch; }
.property-visuals-bottom { margin-top: 34px; margin-bottom: 6px; }
.photo-gallery-panel, .map-panel { padding: 27px; overflow: hidden; }
.visual-panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.visual-panel-header h2 { margin: 0; color: var(--espresso); font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: -.035em; }
.visual-panel-header h2 span { color: #90755f; font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0; }
.text-link { color: #6f573f; font-size: 14px; font-weight: 700; white-space: nowrap; }
.text-link:hover { color: var(--espresso); }
.photo-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; min-height: 224px; }
.gallery-photo { position: relative; min-height: 132px; overflow: hidden; border: 0; border-radius: 12px; padding: 0; background: #eaded1; cursor: zoom-in; }
.gallery-photo img { width: 100%; height: 100%; min-height: 132px; object-fit: cover; transition: transform .25s ease; }
.gallery-photo:hover img { transform: scale(1.045); }
.gallery-photo span { position: absolute; right: 8px; bottom: 8px; padding: 5px 7px; border-radius: 6px; background: rgba(31,24,19,.72); color: #fff; font-size: 11px; font-weight: 700; opacity: 0; transform: translateY(4px); transition: .2s ease; }
.gallery-photo:hover span { opacity: 1; transform: translateY(0); }
.empty-photo-gallery { grid-column: 1 / -1; display: grid; min-height: 224px; place-content: center; justify-items: center; padding: 24px; border: 1px dashed #d5c4b2; border-radius: 14px; background: linear-gradient(135deg, #fbf8f4, #f0e7de); text-align: center; }
.empty-photo-gallery span { display: grid; width: 50px; height: 50px; margin-bottom: 12px; place-items: center; border-radius: 50%; background: #eadfd4; color: #7c6048; font-size: 25px; }
.empty-photo-gallery strong { color: #3b2d23; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.empty-photo-gallery p { max-width: 300px; margin: 8px 0 0; color: #766657; line-height: 1.45; font-size: 14px; }
.map-frame-wrap { position: relative; height: 224px; overflow: hidden; border: 1px solid #dfd1c3; border-radius: 13px; background: #e8ded4; }
.map-frame-wrap iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-empty { position: absolute; inset: 0; display: grid; place-content: center; gap: 10px; color: #6c5948; text-align: center; background: radial-gradient(circle at 30% 20%, #f5eee7, #e5d6c7); }
.map-empty[hidden] { display: none; }
.map-empty span { font-size: 36px; color: #80644b; }
.map-empty p { margin: 0; font-size: 14px; }
.map-note { margin: 11px 0 0; color: #837264; font-size: 12px; line-height: 1.45; }
.review-photo-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.review-photo-row button { width: 100px; height: 76px; overflow: hidden; border: 1px solid #dfd1c4; border-radius: 9px; padding: 0; background: #eee4da; cursor: zoom-in; }
.review-photo-row img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.review-photo-row button:hover img { transform: scale(1.05); }
.photo-modal { position: fixed; inset: 0; z-index: 1000; display: none; place-items: center; padding: 28px; background: rgba(24,18,14,.84); }
.photo-modal.is-open { display: grid; }
.photo-modal img { max-width: min(920px, 96vw); max-height: 86vh; border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,.45); }
.photo-modal-close { position: fixed; top: 18px; right: 21px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: white; color: #231a14; font-size: 30px; line-height: 1; cursor: pointer; }
.photo-upload-section { background: linear-gradient(180deg, rgba(248,243,237,.55), rgba(255,253,250,0)); }
.photo-dropzone { display: flex; min-height: 132px; align-items: center; justify-content: center; gap: 15px; padding: 25px; border: 1.5px dashed #c6af99; border-radius: 14px; background: #fbf8f4; color: #6e5947; cursor: pointer; text-align: center; }
.photo-dropzone:hover { border-color: #806048; background: #f7efe7; }
.photo-dropzone input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.photo-upload-icon { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #e8dbce; color: #5c4635; font-size: 30px; font-weight: 400; }
.photo-dropzone strong { display: block; color: #48372a; font-size: 15px; }
.photo-dropzone small { display: block; max-width: 450px; margin-top: 6px; color: #8a7868; font-size: 12px; line-height: 1.45; }
.photo-status { min-height: 18px; margin: 12px 0 0; color: #76604c; font-size: 13px; font-weight: 600; }
.photo-preview-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.selected-photo { position: relative; width: 122px; height: 92px; overflow: hidden; border: 1px solid #d8c8b9; border-radius: 10px; background: #efe5db; }
.selected-photo img { width: 100%; height: 100%; object-fit: cover; }
.remove-photo { position: absolute; top: 5px; right: 5px; display: grid; width: 25px; height: 25px; place-items: center; border: 0; border-radius: 50%; background: rgba(31,24,19,.78); color: white; font-size: 18px; line-height: 1; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .75; transform: none; }

@media (max-width: 920px) {
  .property-visuals { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .property-visuals { margin-top: 18px; gap: 18px; }
  .photo-gallery-panel, .map-panel { padding: 21px; }
  .photo-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); min-height: 180px; }
  .gallery-photo, .gallery-photo img { min-height: 112px; }
  .map-frame-wrap { height: 200px; }
  .visual-panel-header h2 { font-size: 27px; }
  .photo-dropzone { align-items: flex-start; text-align: left; }
}

/* Version 6.2 — slightly deeper property-report panels */
:root {
  --report-panel: #f1e8df;
  --report-panel-border: #dccbbc;
}

/* Keeps the property report cohesive while making these panels one shade deeper than the page. */
.property-page .scorecard,
.property-page .review-card,
.property-page .empty-reviews,
.property-page .photo-gallery-panel,
.property-page .map-panel {
  background: var(--report-panel);
  border-color: var(--report-panel-border);
}

.property-page .score-list,
.property-page .score-item {
  border-color: #dfd0c2;
}

.property-page .rent-again-row,
.property-page .review-tags span {
  background: #e7d9cb;
}

.property-page .empty-photo-gallery {
  background: linear-gradient(135deg, #f4ece4, #e8dbce);
  border-color: #cdb9a6;
}

.property-page .map-frame-wrap {
  background: #dfd1c3;
  border-color: #d1bda9;
}

/* Version 6.3 — slightly more compact property-report panels */
.property-page .property-content-grid {
  gap: 22px;
}

.property-page .scorecard {
  padding: 24px;
}

.property-page .scorecard-title-row {
  margin-bottom: 15px;
}

.property-page .scorecard h2,
.property-page .reviews-section h2 {
  font-size: 29px;
}

.property-page .score-item {
  padding: 13px 0;
}

.property-page .review-card {
  padding: 23px;
}

.property-page .review-card + .review-card {
  margin-top: 16px;
}

.property-page .share-card {
  margin-top: 26px;
  padding: 29px 32px;
}

.property-page .property-visuals {
  gap: 22px;
}

.property-page .property-visuals-bottom {
  margin-top: 28px;
}

.property-page .photo-gallery-panel,
.property-page .map-panel {
  padding: 23px;
}

.property-page .visual-panel-header {
  margin-bottom: 14px;
}

.property-page .photo-gallery {
  min-height: 200px;
}

.property-page .gallery-photo,
.property-page .gallery-photo img {
  min-height: 118px;
}

.property-page .empty-photo-gallery,
.property-page .map-frame-wrap {
  min-height: 200px;
  height: 200px;
}

@media (max-width: 620px) {
  .property-page .scorecard,
  .property-page .review-card,
  .property-page .photo-gallery-panel,
  .property-page .map-panel { padding: 19px; }
  .property-page .share-card { padding: 24px 21px; }
  .property-page .photo-gallery { min-height: 172px; }
  .property-page .gallery-photo,
  .property-page .gallery-photo img { min-height: 104px; }
  .property-page .empty-photo-gallery,
  .property-page .map-frame-wrap { min-height: 188px; height: 188px; }
}

/* Version 6.5 — owner responses, property claims, and reporting */
.owner-claim-card { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 19px; align-items: center; margin-top: 25px; padding: 24px 26px; background: #eee3d8; border-color: #dac8b7; }
.owner-claim-card h2 { margin: 0; color: var(--espresso); font-family: var(--serif); font-size: 29px; font-weight: 500; letter-spacing: -.035em; }
.owner-claim-card p:not(.section-label) { max-width: 680px; margin: 7px 0 0; color: #655547; line-height: 1.5; font-size: 14px; }
.owner-claim-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: #dfcdbc; color: #624b38; font-family: var(--serif); font-size: 28px; }
.owner-claim-icon.claimed { background: #d9ccb9; font-family: var(--sans); font-size: 19px; font-weight: 700; }
.owner-response { margin-top: 20px; padding: 16px 17px; border: 1px solid #d9c7b7; border-radius: 12px; background: #e8dbcf; }
.owner-response-heading { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.owner-response-kicker { display: block; margin-bottom: 5px; color: #82664f; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.owner-response strong { color: #43342a; font-size: 14px; }
.owner-company { display: inline-block; margin-left: 7px; color: #7c6a5c; font-size: 13px; }
.owner-response-date { color: #89776a; font-size: 12px; white-space: nowrap; }
.owner-response p { margin: 11px 0 0; color: #4e3d30; font-size: 14px; line-height: 1.58; white-space: pre-line; }
.owner-response-empty { display: flex; justify-content: space-between; gap: 18px; align-items: center; background: #f4ebe2; }
.owner-response-empty strong { color: #4d3c2f; font-size: 14px; }
.owner-response-empty p { margin: 4px 0 0; max-width: 500px; color: #756355; }
.response-link, .report-review-button { color: #6d513b; font-size: 13px; font-weight: 700; white-space: nowrap; }
.response-link:hover, .report-review-button:hover { color: var(--espresso); text-decoration: underline; }
.review-actions { display: flex; justify-content: flex-end; margin-top: 14px; }
.report-review-button { border: 0; padding: 0; background: transparent; }
.claim-shell, .response-shell { width: min(100% - 48px, 890px); }
.claim-heading-wrap { max-width: 720px; }
.claim-heading-wrap h1 { margin: 0; color: var(--espresso); font-family: var(--serif); font-size: clamp(42px,5.5vw,66px); font-weight: 500; letter-spacing: -.055em; line-height: 1.04; }
.claim-heading-wrap > p:not(.section-label) { margin: 15px 0 0; color: #685a4d; font-size: 18px; line-height: 1.55; }
.prototype-note { margin-top: 22px; padding: 14px 16px; border: 1px solid #d9c5b0; border-radius: 12px; background: #eee3d8; color: #604c3d; font-size: 14px; line-height: 1.5; }
.claim-form, .response-form { width: min(100%, 860px); margin-top: 23px; overflow: hidden; }
.consent-check { display: flex; gap: 11px; align-items: flex-start; color: #5d4b3d; line-height: 1.5; font-size: 14px; }
.consent-check input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--taupe-deep); }
.response-review-preview { margin-top: 23px; padding: 22px 24px; background: #f1e8df; border-color: #dccbbc; }
.response-review-preview .review-author { margin: 8px 0 0; }
.response-review-preview .review-text { margin-top: 12px; }
.report-modal { position: fixed; inset: 0; z-index: 1100; display: none; place-items: center; padding: 22px; background: rgba(31,24,19,.68); }
.report-modal.is-open { display: grid; }
.report-dialog { position: relative; width: min(100%, 520px); padding: 30px; border-radius: 17px; background: #fdfaf7; box-shadow: 0 25px 80px rgba(24,18,14,.3); }
.report-dialog h2 { margin: 0; color: var(--espresso); font-family: var(--serif); font-size: 35px; font-weight: 500; letter-spacing: -.04em; }
.report-dialog > p:not(.section-label) { margin: 10px 0 22px; color: #6b5b4e; font-size: 14px; line-height: 1.55; }
.dialog-close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #eee3d8; color: #49372a; font-size: 25px; line-height: 1; }
.report-dialog form { display: grid; gap: 9px; }
.report-dialog label { margin-top: 7px; color: #4c3c2f; font-size: 14px; font-weight: 700; }
.report-dialog select, .report-dialog textarea { width: 100%; border: 1px solid #d8cab9; border-radius: 10px; background: #fffdfb; color: var(--espresso); padding: 13px 14px; }
.report-dialog textarea { min-height: 94px; resize: vertical; line-height: 1.5; }
.report-dialog .button-primary { width: 100%; margin-top: 10px; border: 0; }
.report-message { min-height: 18px; margin: 5px 0 0; color: #65513f; font-size: 13px; font-weight: 700; }

@media (max-width: 720px) {
  .owner-claim-card { grid-template-columns: auto 1fr; padding: 21px; }
  .owner-claim-card .button-secondary { grid-column: 1 / -1; width: 100%; }
  .owner-response-empty { align-items: flex-start; flex-direction: column; }
  .owner-response-heading { flex-direction: column; gap: 5px; }
  .claim-shell, .response-shell { width: min(100% - 32px, 890px); }
  .report-dialog { padding: 27px 21px; }
}


/* Version 6.6 — renter details, helpful votes, and policy links */
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-top: 10px; }
.footer-links a { color: rgba(255,255,255,.82); font-size: 11px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.review-status { display: inline-flex; align-items: center; margin-left: 8px; padding: 4px 7px; border-radius: 999px; background: #dfd0c2; color: #6b513d; font-size: 10px; font-weight: 700; letter-spacing: .055em; line-height: 1; text-transform: uppercase; vertical-align: 1px; }
.review-details { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.review-details span { padding: 6px 8px; border: 1px solid #dfd0c2; border-radius: 999px; background: #f7f1eb; color: #705f50; font-size: 12px; font-weight: 700; }
.review-actions { display: flex; align-items: center; gap: 16px; margin-top: 17px; }
.helpful-button { display: inline-flex; align-items: center; gap: 7px; min-height: 32px; padding: 0 10px; border: 1px solid #cbb7a4; border-radius: 999px; background: #f6eee7; color: #624b38; font-size: 12px; font-weight: 700; }
.helpful-button:hover:not(:disabled) { border-color: #806048; background: #ecdfd4; }
.helpful-button span { display: grid; min-width: 18px; height: 18px; place-items: center; border-radius: 999px; background: #e2d1c2; color: #553f2e; font-size: 11px; }
.helpful-button.is-voted, .helpful-button:disabled { cursor: default; border-color: #bca894; background: #e8d9cc; color: #5e4633; opacity: 1; }
.photo-rules { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px; align-items: start; margin-top: 13px; padding: 11px 13px; border: 1px solid #decdbd; border-radius: 10px; background: #f6ede5; color: #665244; }
.photo-rules strong { padding-top: 1px; color: #553f2e; font-size: 12px; white-space: nowrap; }
.photo-rules p { margin: 0; font-size: 12px; line-height: 1.45; }
.policy-shell { width: min(100% - 48px, 900px); padding-top: 52px; padding-bottom: 66px; }
.policy-heading { max-width: 720px; }
.policy-heading h1 { margin: 0; color: var(--espresso); font-family: var(--serif); font-size: clamp(43px, 5.5vw, 68px); font-weight: 500; letter-spacing: -.055em; line-height: 1.04; }
.policy-heading > p:not(.section-label) { margin: 14px 0 0; color: #69594b; font-size: 17px; line-height: 1.6; }
.policy-draft-note { margin-top: 24px; padding: 14px 16px; border-left: 3px solid #9d7d61; border-radius: 0 10px 10px 0; background: #efe4d8; color: #624f40; font-size: 13px; line-height: 1.55; }
.policy-content { display: grid; gap: 18px; margin-top: 24px; }
.policy-card { padding: 25px 27px; }
.policy-card h2 { margin: 0; color: var(--espresso); font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: -.035em; }
.policy-card p, .policy-card li { color: #625245; font-size: 15px; line-height: 1.6; }
.policy-card p { margin: 11px 0 0; }
.policy-card ul { margin: 12px 0 0; padding-left: 20px; }
.policy-card li + li { margin-top: 6px; }
.policy-card a { color: #60442f; font-weight: 700; text-decoration: underline; }
@media (max-width: 620px) {
  .review-actions { flex-wrap: wrap; gap: 14px; }
  .review-status { display: inline-flex; margin: 7px 0 0; }
  .photo-rules { grid-template-columns: 1fr; gap: 4px; }
  .policy-shell { width: min(100% - 32px, 900px); padding-top: 34px; padding-bottom: 48px; }
  .policy-card { padding: 22px 20px; }
}


/* v7 property report layout — intentionally calm, editorial, and not report-card themed */
.property-layout-v7 { background: #fcfaf7; color: #2b2420; }
.property-layout-v7 .site-header { max-width: none; min-height: 92px; padding: 12px clamp(22px, 5vw, 88px); border-bottom: 1px solid #e9e0d6; background: rgba(255,255,255,.9); gap: 26px; position: relative; }
.property-layout-v7 .brand { flex: 0 0 auto; }
.property-layout-v7 .brand-mark { width: 42px; height: 48px; }
.property-layout-v7 .brand-name { font-size: 1.65rem; }
.property-layout-v7 .brand-tagline { font-size: .69rem; }
.property-nav-v7 { display: flex; align-items: center; gap: clamp(16px,2vw,32px); font-weight: 600; font-size: .86rem; white-space: nowrap; margin-left: auto; }
.property-nav-v7 a, .account-nav-v7 a { color: #2b2420; text-decoration: none; }
.property-nav-v7 a.active { color: #76543c; }
.property-header-search { display: flex; width: min(345px, 23vw); min-width: 220px; height: 46px; border: 1px solid #e6ded5; border-radius: 10px; overflow: hidden; background: #fff; }
.property-header-search input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 0 14px; color: #2b2420; font: inherit; font-size: .8rem; }
.property-header-search button { border: 0; background: #fff; color: #2b2420; width: 48px; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.account-nav-v7 { display: flex; align-items: center; gap: 16px; white-space: nowrap; font-size: .85rem; font-weight: 600; }
.account-cta-v7 { background: #3a281b; color: #fff !important; padding: 13px 17px; border-radius: 9px; }
.property-v7-shell { width: min(1430px, calc(100% - 48px)); margin: 0 auto; padding: 22px 0 52px; }
.breadcrumbs-v7 { display: flex; gap: 10px; align-items: center; color: #81776f; font-size: .75rem; margin-bottom: 20px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.breadcrumbs-v7 a { color: #81776f; text-decoration: none; }.breadcrumbs-v7 strong { overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
.property-v7-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(350px, .95fr); gap: 28px; align-items: start; }
.property-v7-main, .property-v7-sidebar { min-width: 0; display: grid; gap: 18px; }
.property-hero-v7 { display: grid; grid-template-columns: 290px minmax(0,1fr); align-items: center; gap: 28px; margin-bottom: 6px; }
.property-cover-v7 { height: 177px; border-radius: 12px; position: relative; overflow: hidden; background: #d4c5b5; box-shadow: 0 6px 18px rgba(65,43,23,.08); }
.property-cover-v7 img { width: 100%; height: 100%; object-fit: cover; display: block; }
.property-cover-v7::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(35,23,15,.40)); pointer-events:none; }
.property-cover-v7 span { position: absolute; bottom: 10px; left: 11px; z-index:1; color:#fff; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; padding: 5px 9px; font-size: .65rem; }
.property-title-v7 h1 { margin: 0; font: 600 clamp(2rem,3vw,3rem)/1.03 'Playfair Display', Georgia, serif; letter-spacing: -.04em; }
.property-title-v7 > p { margin: 8px 0 14px; color: #645a53; font-size: 1rem; }
.property-rating-inline { display: flex; align-items: center; gap: 10px; font-size: .9rem; }.property-rating-inline strong { font-size: 1rem; }.property-rating-inline span:last-child { color:#6f665e; }
.property-rating-inline .review-stars, .review-stars { color: #b46d2f; letter-spacing: 2px; }
.property-facts-v7 { display: flex; flex-wrap: wrap; gap: 0; margin-top: 20px; color: #645a53; font-size: .78rem; }
.property-facts-v7 span { padding: 0 14px; border-left: 1px solid #ded4c9; }.property-facts-v7 span:first-child { border-left: 0; padding-left: 0; }
.property-layout-v7 .panel { border: 1px solid #e8ddd1; border-radius: 12px; background: #fffdfa; box-shadow: 0 4px 14px rgba(76,50,29,.035); }
.experience-overview-v7 { padding: 20px 22px 15px; }
.overview-title-v7 { display:flex; justify-content:space-between; align-items:center; gap:16px; }.overview-title-v7 h2, .tenant-reviews-v7 h2, .glance-card-v7 h2, .location-card-v7 h2, .info-card-v7 h2 { margin: 0; font-size: .78rem; text-transform: uppercase; letter-spacing: .01em; font-family: 'DM Sans', sans-serif; font-weight: 700; }.overview-title-v7 a { color:#6b4a34; font-size:.72rem; }
.overview-content-v7 { display:grid; grid-template-columns: 245px minmax(0,1fr); gap: 28px; margin-top: 20px; }.overall-experience-v7 { border-right:1px solid #e8ddd1; display:grid; align-content:center; justify-items:start; }.overall-experience-v7 > span { font-size: .8rem; font-weight:600; }.overall-experience-v7 strong { margin-top:6px; font-size: 3.8rem; letter-spacing:-.08em; line-height: .9; }.overall-experience-v7 small { margin-left: 104px; margin-top:-29px; font-size:1.25rem; color:#6f665e; }.overall-experience-v7 .large { margin-top: 16px; font-size:1.45rem; }.overall-experience-v7 p { margin:8px 0 0; font-size:.73rem; font-weight:600; color:#5b5149; }
.overview-score-list-v7 { display:grid; gap: 13px; align-content:center; }.overview-score-row { display:grid; grid-template-columns: minmax(120px,1.25fr) minmax(105px,1fr) 36px 70px; gap: 12px; align-items:center; font-size:.78rem; }.overview-score-row > span:first-child { font-weight:600; }.overview-score-row strong { text-align:right; font-size:.74rem; }.overview-score-row em { font-style:normal; color:#756b63; font-size:.73rem; }.dot-meter { display:flex; gap:5px; }.dot-meter i { display:block; width:8px; height:8px; border-radius:50%; background:#ebe4dd; }.dot-meter i.is-on { background:#795237; }
.overview-footnote-v7 { color:#81776f; font-size:.7rem; padding-top:15px; margin:17px 0 0; border-top: 1px solid #eee5dd; }
.tenant-reviews-v7 { margin-top: 2px; }.reviews-heading-v7 { display:flex; align-items:end; justify-content:space-between; gap:16px; padding: 6px 2px 9px; }.reviews-heading-v7 p { margin:0; font:600 1rem/1.1 'Playfair Display', Georgia, serif; }.reviews-heading-v7 h2 { font-size:.78rem; color:#6f665e; text-transform:none; font-weight:500; letter-spacing:0; margin-top:4px; }.sort-pill-v7 { color:#3a281b; text-decoration:none; border:1px solid #e6ded5; padding:8px 12px; border-radius:8px; font-size:.74rem; font-weight:600; background:#fffdfa; }.review-list-v7 { display:grid; gap:14px; }
.review-card-v7 { display:grid; grid-template-columns: 255px minmax(0,1fr); padding:0 !important; overflow:hidden; }.review-person-v7 { padding:22px 20px; border-right:1px solid #eee5dd; display:flex; align-items:flex-start; gap:12px; }.review-initials-v7 { display:grid; place-items:center; flex:0 0 auto; width:42px; height:42px; border-radius:50%; background:#f3eadf; color:#70513c; font-size:.85rem; }.review-person-v7 strong { display:block; font-size:.84rem; }.tenant-badge-v7 { display:inline-block; color:#5d5147; font-size:.65rem; font-weight:600; margin-top:4px; }.review-details-v7 { display:grid; gap:4px; margin-top:7px; color:#736860; font-size:.64rem; line-height:1.35; }.review-content-v7 { padding:18px 22px 16px; }.review-line-v7 { display:flex; justify-content:space-between; gap:14px; align-items:center; }.review-line-v7 time { color:#7b7169; font-size:.68rem; }.review-content-v7 h3 { font-size:.9rem; margin:7px 0 5px; }.review-content-v7 p { margin:0; color:#413933; font-size:.76rem; line-height:1.52; }.review-tags-v7 { display:flex; flex-wrap:wrap; gap:6px; margin-top:11px; }.review-tags-v7 span { border-radius:999px; padding:4px 8px; background:#f5f1ed; color:#62564c; font-size:.61rem; }.review-photo-row { display:flex; gap:7px; margin:12px 0; }.review-photo-row button { padding:0; width:64px; height:48px; border:0; border-radius:6px; overflow:hidden; cursor:pointer; }.review-photo-row img { width:100%; height:100%; object-fit:cover; }.v7-owner-response { background:#f8f4ed; border:1px solid #eee2d4; border-radius:8px; padding:10px 12px; margin:13px 0 0; display:grid; grid-template-columns:1fr auto; gap:4px 12px; }.v7-owner-response div { display:flex; flex-wrap:wrap; gap:6px; align-items:center; }.v7-owner-response strong { font-size:.67rem; }.v7-owner-response span, .v7-owner-response time { font-size:.62rem; color:#766b60; }.v7-owner-response p { grid-column:1/-1; font-size:.68rem; }.v7-owner-empty { margin-top:13px; padding:10px 0 0; border-top:1px solid #eee5dd; display:flex; justify-content:space-between; gap:12px; }.v7-owner-empty strong { font-size:.7rem; }.v7-owner-empty p { font-size:.66rem; color:#736860; max-width:410px; }.v7-owner-empty a { align-self:center; color:#6a4a35; font-size:.69rem; font-weight:600; white-space:nowrap; }.review-actions-v7 { display:flex; justify-content:space-between; align-items:center; margin-top:12px; }.review-actions-v7 button { padding:0; border:0; background:none; color:#5e534a; font-size:.68rem; cursor:pointer; }.helpful-button b { font-weight:600; margin-left:4px; }
.owner-card-v7 { display:grid; grid-template-columns:48px 1fr; gap:14px; padding:20px; background:linear-gradient(135deg,#fffdf9,#f8f2e9) !important; }.owner-icon-v7 { display:grid; place-items:center; width:42px; height:42px; border-radius:50%; background:#b5967c; color:#fff; font-size:1.1rem; }.owner-icon-v7.is-claimed { background:#71775f; }.owner-card-v7 h2 { margin:2px 0 6px; font:600 1rem/1.25 'Playfair Display',Georgia,serif; }.owner-card-v7 p { margin:0 0 12px; color:#60564d; font-size:.73rem; line-height:1.45; }.owner-button-v7 { display:inline-block; background:#3a281b; color:#fff; text-decoration:none; border-radius:7px; padding:9px 13px; font-size:.72rem; font-weight:600; }.owner-text-link-v7 { display:block; margin-top:10px; color:#6a4a35; font-size:.68rem; }
.glance-card-v7 { padding:17px 20px 8px; }.glance-card-v7 h2 { padding-bottom:10px; }.glance-row-v7 { display:flex; justify-content:space-between; gap:12px; padding:12px 0; border-top:1px solid #eee5dd; color:#655a51; font-size:.73rem; }.glance-row-v7 strong { color:#2b2420; text-align:right; }
.location-card-v7 { padding:16px; }.location-title-v7 { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:8px; }.location-title-v7 a { color:#6b4a35; font-size:.68rem; }.location-media-v7 { min-height:156px; }.location-media-v7.map-only-v7 { display:block; }.map-frame-v7 { overflow:hidden; min-height:156px; border-radius:8px; position:relative; background:#ede6dd; }.map-frame-v7 iframe { width:100%; height:100%; min-height:156px; border:0; }.map-empty-v7 { position:absolute; inset:0; display:grid; place-items:center; padding:10px; text-align:center; color:#70665d; font-size:.7rem; background:repeating-linear-gradient(45deg,#ede6dd,#ede6dd 8px,#e5dbcf 8px,#e5dbcf 16px); }
.location-card-v7 > p { margin:8px 0 0; color:#756b62; font-size:.65rem; }.sidebar-bottom-grid-v7 { display:grid; grid-template-columns:1.1fr .9fr; gap:12px; }.info-card-v7 { padding:16px; }.info-card-v7 h2 { font-size:.68rem; line-height:1.25; }.info-card-v7 ul { list-style:none; padding:0; margin:13px 0; display:grid; gap:9px; }.info-card-v7 li { display:flex; justify-content:space-between; gap:8px; color:#655b53; font-size:.64rem; }.info-card-v7 li strong { color:#3d342d; text-align:right; font-size:.62rem; }.trust-card-v7 li { display:block; padding-left:14px; position:relative; line-height:1.35; }.trust-card-v7 li::before { content:'✓'; position:absolute; left:0; color:#76543c; }.info-card-v7 > a { color:#6b4a35; font-size:.65rem; }
.property-layout-v7 .site-footer { margin-top:0; }
@media (max-width: 1180px) { .property-layout-v7 .site-header { gap:16px; }.property-header-search { display:none; }.property-v7-grid { grid-template-columns:minmax(0,1.55fr) minmax(310px,.9fr); }.property-hero-v7 { grid-template-columns:235px minmax(0,1fr); }.property-cover-v7 { height:150px; }.overview-content-v7 { grid-template-columns:190px minmax(0,1fr); }.review-card-v7 { grid-template-columns:210px minmax(0,1fr); } }
@media (max-width: 850px) { .property-layout-v7 .site-header { padding:12px 20px; flex-wrap:wrap; }.property-nav-v7 { order:3; width:100%; justify-content:center; margin:0; }.account-nav-v7 { margin-left:auto; }.property-v7-grid { grid-template-columns:1fr; }.property-v7-sidebar { grid-row:2; }.property-hero-v7 { grid-template-columns:205px 1fr; }.property-cover-v7 { height:140px; }.sidebar-bottom-grid-v7 { grid-template-columns:1fr 1fr; } }
@media (max-width: 610px) { .property-v7-shell { width:min(100% - 28px, 1430px); padding-top:16px; }.property-layout-v7 .site-header { min-height:auto; }.property-layout-v7 .brand-name { font-size:1.35rem; }.property-layout-v7 .brand-tagline { display:none; }.property-nav-v7 { gap:15px; overflow:auto; justify-content:flex-start; padding-bottom:3px; }.property-nav-v7 a { font-size:.75rem; }.account-nav-v7 a:first-child { display:none; }.account-cta-v7 { padding:10px 11px; font-size:.72rem; }.property-hero-v7 { grid-template-columns:1fr; gap:14px; }.property-cover-v7 { height:185px; }.property-title-v7 h1 { font-size:2.15rem; }.property-facts-v7 { margin-top:14px; }.property-facts-v7 span { padding:0 8px; font-size:.66rem; }.overview-content-v7 { grid-template-columns:1fr; gap:18px; }.overall-experience-v7 { border-right:0; border-bottom:1px solid #eee5dd; padding-bottom:15px; }.overview-score-row { grid-template-columns:minmax(108px,1.25fr) minmax(80px,1fr) 28px 56px; gap:7px; font-size:.67rem; }.dot-meter { gap:3px; }.dot-meter i { width:7px; height:7px; }.review-card-v7 { grid-template-columns:1fr; }.review-person-v7 { border-right:0; border-bottom:1px solid #eee5dd; padding:15px; }.review-content-v7 { padding:15px; }.location-media-v7 { min-height:170px; }.map-frame-v7, .map-frame-v7 iframe { min-height:170px; }.sidebar-bottom-grid-v7 { grid-template-columns:1fr; }.owner-card-v7 { padding:16px; } }

/* v7.2 — one shade deeper across the property-report page */
.property-layout-v7 { background: #f6f0e9; }
.property-layout-v7 .site-header {
  background: #fbf7f2;
  border-bottom-color: #e2d7cb;
}
.property-layout-v7 .property-header-search,
.property-layout-v7 .property-header-search button { background: #fcf8f4; border-color: #dfd3c6; }
.property-layout-v7 .panel { background: #faf5ef; border-color: #dfd3c6; }
.property-layout-v7 .sort-pill-v7 { background: #faf5ef; border-color: #dfd3c6; }
.property-layout-v7 .owner-card-v7 { background: linear-gradient(135deg, #faf5ef, #f1e7da) !important; }
.property-layout-v7 .review-initials-v7 { background: #ecdfd1; }
.property-layout-v7 .review-tags-v7 span { background: #eee5db; }
.property-layout-v7 .v7-owner-response { background: #f4ece3; border-color: #e0d3c6; }
.property-layout-v7 .map-frame-v7 { background: #e7ddd2; }
.property-layout-v7 .map-empty-v7 { background: repeating-linear-gradient(45deg, #e9dfd5, #e9dfd5 8px, #dfd2c4 8px, #dfd2c4 16px); }
.property-layout-v7 .property-cover-v7 { background: #cbb9a8; }
.property-layout-v7 .glance-row-v7,
.property-layout-v7 .overview-footnote-v7,
.property-layout-v7 .overall-experience-v7,
.property-layout-v7 .review-person-v7,
.property-layout-v7 .v7-owner-empty { border-color: #e5d9ce; }


/* v7.3 — search results + first-review flow */
.search-page { background: #f6f0e9; }
.search-page .site-header { background: #fbf7f2; border-bottom-color: #e2d7cb; }
.search-v7-shell { width: min(100% - 64px, 1180px); margin: 0 auto; padding: 28px 0 78px; }
.search-intro-v7 { padding: 44px 48px 40px; border: 1px solid #dfd3c6; border-radius: 14px; background: linear-gradient(130deg,#faf5ef 0%,#f3e8dc 100%); box-shadow: 0 11px 30px rgba(73,50,33,.05); }
.search-intro-v7 h1 { margin: 6px 0 12px; color: #2b2420; font: 500 clamp(2.25rem,4vw,3.45rem)/1.03 'Playfair Display', Georgia, serif; letter-spacing: -.048em; }
.search-intro-v7 > div > p:not(.section-label) { max-width: 620px; margin: 0; color: #65584d; font-size: .96rem; line-height: 1.6; }
.results-search-v7 { display: flex; align-items: center; gap: 12px; max-width: 760px; min-height: 62px; margin-top: 28px; padding: 7px 8px 7px 17px; border: 1px solid #d7c8bb; border-radius: 10px; background: #fffdfa; box-shadow: 0 8px 20px rgba(62,45,31,.06); }
.results-search-v7 .search-icon { flex: 0 0 auto; width: 22px; height: 22px; color: #796554; }
.results-search-v7 input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: #2b2420; font: 500 .89rem 'DM Sans', sans-serif; }
.results-search-v7 input::placeholder { color: #93877b; }
.results-search-v7 button { min-height: 44px; padding: 0 22px; border: 0; border-radius: 7px; background: #2b2420; color: #fff; cursor: pointer; font: 600 .8rem 'DM Sans', sans-serif; }
.results-search-v7 button:hover { background: #16110e; }
.results-search-message { min-height: 18px; margin: 7px 0 0; color: #9b2f27; font-size: .76rem; font-weight: 600; }
.search-results-v7 { margin-top: 26px; }
.search-results-heading-v7 { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding: 8px 3px 14px; }
.search-results-heading-v7 p { margin: 0; color: #896e57; font-size: .69rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.search-results-heading-v7 h2 { margin: 4px 0 0; color: #2b2420; font: 500 1.5rem/1.1 'Playfair Display', Georgia, serif; letter-spacing: -.03em; }
.results-count-v7 { padding-bottom: 2px; color: #786d63; font-size: .74rem; white-space: nowrap; }
.search-results-list-v7 { display: grid; gap: 12px; }
.search-result-card-v7 { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; gap: 16px; align-items: center; padding: 18px 19px; border: 1px solid #dfd3c6; border-radius: 12px; background: #faf5ef; box-shadow: 0 6px 20px rgba(73,50,33,.035); }
.result-mark-v7 { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 9px; background: #ece0d3; color: #72513a; }
.result-mark-v7 svg { width: 23px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
.result-main-v7 p { margin: 0 0 4px; color: #896f59; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.result-main-v7 h3 { margin: 0; color: #2c241f; font: 500 1.18rem/1.2 'Playfair Display', Georgia, serif; letter-spacing: -.02em; }
.result-main-v7 > span { display: block; margin-top: 4px; color: #74695f; font-size: .72rem; }
.result-meta-v7 { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-top: 10px; color: #6c6056; font-size: .71rem; }
.result-rating-v7 { display: inline-flex; align-items: center; gap: 6px; color: #886347; letter-spacing: .05em; }
.result-rating-v7 strong { color: #3d3027; letter-spacing: 0; }
.result-empty-chip-v7 { padding: 4px 7px; border-radius: 999px; background: #eee4d9; color: #665346; font-size: .64rem; font-weight: 700; }
.result-actions-v7 { display: grid; justify-items: end; gap: 9px; }
.result-view-button-v7 { border: 0; padding: 0; background: transparent; color: #4c3525; cursor: pointer; font: 700 .76rem 'DM Sans', sans-serif; white-space: nowrap; }
.result-view-button-v7 span { margin-left: 4px; }
.result-first-review-v7 { border: 0; padding: 0; background: transparent; color: #806147; cursor: pointer; font: 600 .68rem 'DM Sans', sans-serif; white-space: nowrap; }
.result-view-button-v7:hover, .result-first-review-v7:hover { text-decoration: underline; }
.related-label-v7 { margin: 18px 0 1px; color: #786a5e; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.no-reviews-callout-v7 { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 21px 23px; border: 1px solid #dfd3c6; border-radius: 12px; background: #f0e5d8; }
.no-reviews-callout-v7 p { margin: 0 0 4px; color: #876b54; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.no-reviews-callout-v7 h3 { margin: 0; color: #2d251f; font: 500 1.25rem/1.1 'Playfair Display', Georgia, serif; }
.no-reviews-callout-v7 span { display: block; margin-top: 6px; color: #685c52; font-size: .75rem; }
.no-reviews-callout-v7 button { flex: 0 0 auto; border: 0; border-radius: 7px; padding: 12px 15px; background: #2b2420; color: #fff; cursor: pointer; font: 600 .74rem 'DM Sans', sans-serif; }
.no-reviews-callout-v7 button span { display: inline; margin: 0 0 0 5px; color: inherit; }
.no-reviews-callout-v7 button:hover { background: #17120e; }
.search-start-v7 { padding: 58px 28px; border: 1px dashed #d5c5b6; border-radius: 12px; background: #faf5ef; text-align: center; }
.search-start-icon-v7 { display: grid; place-items: center; width: 42px; height: 42px; margin: 0 auto 12px; border-radius: 50%; background: #ede1d5; color: #74533c; font-size: 1.4rem; }
.search-start-v7 strong { display: block; color: #342921; font: 500 1.3rem/1.2 'Playfair Display', Georgia, serif; }
.search-start-v7 p { max-width: 390px; margin: 8px auto 0; color: #73685f; font-size: .78rem; line-height: 1.55; }
@media (max-width: 700px) { .search-v7-shell { width: min(100% - 30px,1180px); padding-bottom: 48px; }.search-intro-v7 { padding: 31px 22px 27px; }.results-search-v7 { min-height: 58px; gap: 9px; padding-left: 13px; }.results-search-v7 button { padding: 0 15px; }.search-results-heading-v7 { align-items: start; flex-direction: column; gap: 7px; }.search-result-card-v7 { grid-template-columns: 42px minmax(0,1fr); gap: 12px; padding: 16px; }.result-mark-v7 { width: 39px; height: 39px; }.result-actions-v7 { grid-column: 2; justify-items: start; align-items: center; grid-auto-flow: column; justify-content: start; gap: 15px; margin-top: 2px; }.no-reviews-callout-v7 { align-items: start; flex-direction: column; gap: 17px; }.no-reviews-callout-v7 button { width: 100%; }.search-results-heading-v7 h2 { font-size: 1.3rem; } }

/* v7.4 — mobile-first polish for iPhone and Android */
@media (max-width: 640px) {
  html { -webkit-text-size-adjust: 100%; }
  body { overflow-x: hidden; }
  button, input, select, textarea { font-size: 16px; }

  /* Keep primary navigation reachable without crowding the header. */
  .site-header:not(.property-header-v7) {
    padding: 16px 18px 14px;
    gap: 13px;
  }
  .site-header:not(.property-header-v7) .brand { gap: 10px; }
  .site-header:not(.property-header-v7) .brand-mark { width: 40px; height: 46px; }
  .site-header:not(.property-header-v7) .brand-copy { gap: 2px; }
  .site-header:not(.property-header-v7) .brand-name { font-size: 25px; }
  .site-header:not(.property-header-v7) .brand-tagline { font-size: 9px; letter-spacing: .15em; }
  .site-header:not(.property-header-v7) .site-nav {
    width: calc(100vw - 36px);
    min-height: 46px;
    gap: 18px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0 1px 3px;
    scrollbar-width: none;
  }
  .site-header:not(.property-header-v7) .site-nav::-webkit-scrollbar,
  .property-nav-v7::-webkit-scrollbar { display: none; }
  .site-header:not(.property-header-v7) .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .site-header:not(.property-header-v7) .site-nav .nav-cta {
    padding: 11px 14px;
  }

  /* Homepage: stack the search action so it is easy to use one-handed. */
  .home-hero { min-height: 0; padding: 50px 17px 35px; }
  .hero-house { width: 690px; right: -388px; bottom: -51px; opacity: .36; }
  .home-hero h1 { max-width: 340px; margin-inline: auto; font-size: clamp(42px, 13.1vw, 52px); }
  .home-hero h1::after { width: 48px; margin: 17px auto 14px; }
  .hero-copy { max-width: 330px; margin-bottom: 23px; font-size: 17px; line-height: 1.48; }
  .home-search {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 13px;
    border-radius: 12px;
  }
  .home-search .search-icon { width: 23px; height: 23px; align-self: center; }
  .home-search input { min-height: 44px; font-size: 16px; }
  .home-search button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 16px;
  }
  .search-message { text-align: left; font-size: 13px; }
  .benefits { padding: 8px 18px 4px; }
  .benefit-card { padding: 25px 11px 29px; }
  .benefit-icon { width: 75px; height: 75px; margin-bottom: 10px; }
  .benefit-icon svg { width: 39px; height: 39px; }
  .benefit-card h2 { font-size: 24px; }
  .benefit-card p { max-width: 300px; font-size: 15px; }
  .mini-rule { margin-top: 13px; }
  .community-strip {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    padding: 21px 19px;
    gap: 8px 13px;
  }
  .community-icon { width: 42px; height: 42px; grid-row: span 2; }
  .community-strip strong { align-self: end; font-size: 16px; }
  .community-strip p { grid-column: 2; width: auto; font-size: 14px; line-height: 1.45; }
  .community-strip .strip-cta { grid-column: 1 / -1; width: 100%; min-height: 50px; margin-top: 10px; }
  .site-footer { padding: 25px 18px; font-size: 11px; letter-spacing: .055em; }
  .footer-links { gap: 10px 14px; margin-top: 13px; }
  .footer-links a { font-size: 10px; }

  /* Forms and policy pages: tighter rhythm, full-width controls, no tiny tap targets. */
  .page-shell { width: min(100% - 32px, 1120px); padding: 34px 0 48px; }
  .property-shell, .review-shell { padding-top: 30px; }
  .back-link { margin-bottom: 17px; font-size: 13px; }
  .review-heading-wrap h1,
  .claim-heading-wrap h1,
  .policy-heading h1 { font-size: clamp(36px, 10.6vw, 47px); }
  .review-heading-wrap > p:not(.section-label),
  .claim-heading-wrap > p:not(.section-label),
  .policy-heading > p:not(.section-label) { font-size: 16px; }
  .review-form, .claim-form, .response-form { margin-top: 22px; }
  .form-section { padding: 23px 18px; }
  .form-section-heading { gap: 11px; margin-bottom: 19px; }
  .step-number { width: 29px; height: 29px; }
  .form-section-heading h2 { font-size: 24px; }
  .form-section-heading p { font-size: 13px; }
  .form-grid, .rating-grid { grid-template-columns: 1fr; gap: 15px; }
  .form-field.full { grid-column: auto; }
  .form-field input, .form-field select, .form-field textarea { min-height: 50px; padding: 13px 14px; }
  .form-field textarea { min-height: 154px; }
  .rating-hint { font-size: 12px; }
  .photo-dropzone { min-height: 155px; }
  .photo-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-rules { padding: 12px; }
  .form-error { padding: 0 18px; }
  .form-submit { min-height: 54px; margin-top: 20px; font-size: 16px; }
  .owner-claim-card { padding: 18px; }
  .owner-claim-card h2 { font-size: 25px; }
  .owner-claim-card p:not(.section-label) { font-size: 13px; }
  .button-primary, .button-secondary { width: 100%; min-height: 50px; }
  .policy-card { padding: 21px 18px; }
  .policy-card h2 { font-size: 25px; }
  .policy-card p, .policy-card li { font-size: 14px; }
  .report-modal { align-items: end; padding: 0; }
  .report-dialog { width: 100%; max-height: 88vh; overflow-y: auto; border-radius: 18px 18px 0 0; padding: 24px 18px 28px; }
  .report-dialog h2 { padding-right: 28px; font-size: 30px; }

  /* Property report: preserve the editorial hierarchy at small screen sizes. */
  .property-layout-v7 .site-header { padding: 12px 14px 10px; gap: 11px; }
  .property-layout-v7 .brand { gap: 8px; }
  .property-layout-v7 .brand-mark { width: 35px; height: 40px; }
  .property-layout-v7 .brand-name { font-size: 1.28rem; }
  .property-layout-v7 .property-nav-v7 {
    order: 4;
    width: calc(100vw - 28px);
    min-height: 40px;
    gap: 17px;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 0 5px;
    scrollbar-width: none;
  }
  .property-layout-v7 .property-nav-v7 a { display: inline-flex; align-items: center; min-height: 38px; white-space: nowrap; }
  .property-layout-v7 .property-header-search { order: 3; width: 100%; min-width: 0; height: 47px; }
  .property-layout-v7 .property-header-search input { font-size: 16px; }
  .property-layout-v7 .account-nav-v7 { margin-left: auto; gap: 0; }
  .property-layout-v7 .account-nav-v7 a:first-child { display: none; }
  .property-layout-v7 .account-cta-v7 { min-height: 42px; display: inline-flex; align-items: center; padding: 10px 12px; font-size: .71rem; }
  .property-v7-shell { width: min(100% - 28px, 1430px); padding: 14px 0 40px; }
  .breadcrumbs-v7 { margin-bottom: 15px; }
  .property-hero-v7 { gap: 13px; margin-bottom: 2px; }
  .property-cover-v7 { height: 180px; }
  .property-title-v7 h1 { font-size: clamp(2rem, 9vw, 2.45rem); }
  .property-title-v7 > p { font-size: .9rem; line-height: 1.5; }
  .property-rating-inline { flex-wrap: wrap; gap: 7px 10px; }
  .property-facts-v7 { gap: 7px 0; }
  .property-facts-v7 span { font-size: .63rem; }
  .experience-overview-v7 { padding: 17px 15px 14px; }
  .overview-title-v7 { align-items: flex-start; }
  .overview-title-v7 a { font-size: .68rem; white-space: nowrap; }
  .overall-experience-v7 strong { font-size: 3.35rem; }
  .overall-experience-v7 small { margin-left: 91px; }
  .overview-score-list-v7 { gap: 12px; }
  .overview-score-row { grid-template-columns: minmax(104px, 1.25fr) minmax(75px, 1fr) 27px 52px; gap: 6px; font-size: .65rem; }
  .overview-score-row em, .overview-score-row strong { font-size: .64rem; }
  .dot-meter { gap: 3px; }
  .dot-meter i { width: 6px; height: 6px; }
  .reviews-heading-v7 { align-items: flex-start; }
  .sort-pill-v7 { min-height: 39px; display: inline-flex; align-items: center; padding: 8px 10px; }
  .review-person-v7 { gap: 10px; padding: 14px; }
  .review-content-v7 { padding: 14px; }
  .review-line-v7 { align-items: flex-start; flex-direction: column; gap: 5px; }
  .review-content-v7 p { font-size: .8rem; line-height: 1.56; }
  .review-photo-row { overflow-x: auto; padding-bottom: 3px; }
  .review-photo-row button { flex: 0 0 auto; width: 88px; height: 64px; }
  .v7-owner-response { grid-template-columns: 1fr; gap: 5px; }
  .v7-owner-response time { grid-row: 1; justify-self: start; }
  .v7-owner-empty { align-items: flex-start; flex-direction: column; }
  .v7-owner-empty a { align-self: flex-start; }
  .review-actions-v7 { flex-wrap: wrap; gap: 11px; }
  .property-v7-sidebar { gap: 14px; }
  .owner-card-v7, .glance-card-v7, .location-card-v7, .info-card-v7 { padding: 16px; }
  .location-media-v7, .map-frame-v7, .map-frame-v7 iframe { min-height: 185px; }
  .location-title-v7 { flex-wrap: wrap; gap: 7px; }
  .sidebar-bottom-grid-v7 { gap: 14px; }

  /* Search results: let long addresses wrap without shrinking actions too far. */
  .search-v7-shell { width: min(100% - 28px, 1180px); padding: 18px 0 44px; }
  .search-intro-v7 { padding: 27px 18px 22px; border-radius: 12px; }
  .search-intro-v7 h1 { font-size: clamp(2.05rem, 10vw, 2.65rem); }
  .search-intro-v7 > div > p:not(.section-label) { font-size: .9rem; }
  .results-search-v7 { display: grid; grid-template-columns: 21px minmax(0, 1fr); gap: 9px; min-height: 0; margin-top: 21px; padding: 10px 11px; }
  .results-search-v7 .search-icon { width: 21px; height: 21px; align-self: center; }
  .results-search-v7 input { min-height: 39px; font-size: 16px; }
  .results-search-v7 button { grid-column: 1 / -1; min-height: 48px; width: 100%; font-size: .82rem; }
  .search-results-v7 { margin-top: 20px; }
  .search-result-card-v7 { padding: 15px; }
  .result-main-v7 h3 { font-size: 1.08rem; overflow-wrap: anywhere; }
  .result-main-v7 > span { line-height: 1.45; }
  .result-actions-v7 { gap: 17px; }
  .result-view-button-v7, .result-first-review-v7 { min-height: 38px; display: inline-flex; align-items: center; }
  .no-reviews-callout-v7 { padding: 18px; }
  .no-reviews-callout-v7 h3 { font-size: 1.18rem; }
  .search-start-v7 { padding: 45px 20px; }
}

@media (max-width: 380px) {
  .home-hero h1 { font-size: 41px; }
  .brand-name { font-size: 23px; }
  .property-layout-v7 .account-cta-v7 { padding: 9px 10px; }
  .overview-score-row { grid-template-columns: minmax(92px, 1.2fr) minmax(66px, 1fr) 25px 48px; font-size: .61rem; }
  .overview-score-row em, .overview-score-row strong { font-size: .6rem; }
}


/* Supabase-connected account and verification additions */
.auth-page .site-header { background: rgba(250, 247, 242, .95); }
.auth-shell { max-width: 760px; }
.auth-card { padding: clamp(1.6rem, 4vw, 2.6rem); }
.auth-card h1 { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.6rem); margin: .2rem 0 .6rem; }
.auth-copy { max-width: 620px; color: var(--muted); line-height: 1.7; }
.auth-form { margin-top: 1.4rem; display: grid; gap: 1rem; }
.auth-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.button-secondary { border: 1px solid rgba(43,36,32,.18); background: rgba(255,255,255,.62); color: var(--espresso); border-radius: 999px; padding: .9rem 1.35rem; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; justify-content: center; align-items: center; }
.auth-status-card { margin: 1.1rem 0 0; border: 1px solid rgba(43,36,32,.12); background: rgba(255,255,255,.55); border-radius: 22px; padding: 1rem 1.1rem; }
.auth-status-card strong { display: block; margin-bottom: .25rem; }
.auth-status-card p { margin: 0; color: var(--muted); }
.auth-status-card .button-primary { margin-top: .8rem; }
.auth-notice { margin: 1.2rem 0; border: 1px solid rgba(123, 91, 67, .22); background: rgba(246, 238, 227, .75); border-radius: 22px; padding: 1rem 1.15rem; display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; color: var(--espresso); }
.auth-notice span { color: var(--muted); flex: 1; min-width: 220px; }
.auth-notice a { color: var(--espresso); font-weight: 800; }
.auth-notice.is-signed-in { background: rgba(255,255,255,.55); }
.verification-upload-section { border-top: 1px solid rgba(43,36,32,.1); padding-top: 1.4rem; }
.verification-rules { margin-top: .9rem; }
.ok-message { color: #2e6a3f !important; }
@media (max-width: 720px) { .auth-actions, .auth-actions button, .auth-actions a { width: 100%; } .auth-notice { align-items: flex-start; } }

/* v8.4 — mobile score bars fit fix */
@media (max-width: 640px) {
  .overview-score-list-v7 {
    width: 100%;
    overflow: hidden;
  }

  .overview-score-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "label score"
      "meter status";
    gap: 7px 10px;
    align-items: center;
    padding: 4px 0;
    width: 100%;
    min-width: 0;
  }

  .overview-score-row > span:first-child {
    grid-area: label;
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: .74rem;
    line-height: 1.25;
  }

  .overview-score-row .dot-meter {
    grid-area: meter;
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    min-width: 0;
  }

  .overview-score-row .dot-meter i {
    width: 100%;
    height: 6px;
    border-radius: 999px;
  }

  .overview-score-row strong {
    grid-area: score;
    text-align: right;
    font-size: .72rem;
    white-space: nowrap;
  }

  .overview-score-row em {
    grid-area: status;
    text-align: right;
    font-size: .68rem;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .overview-score-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 8px;
  }

  .overview-score-row .dot-meter { gap: 3px; }
  .overview-score-row .dot-meter i { height: 5px; }
  .overview-score-row > span:first-child { font-size: .68rem; }
}


/* v8.5 — phone header/top-bar fit fix */
@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  .site-header,
  .property-layout-v7 .site-header,
  .property-header-v7 {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 12px 14px;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }

  .brand,
  .site-header .brand,
  .property-header-v7 .brand {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 112px);
  }

  .brand-mark {
    width: 38px;
    min-width: 38px;
    height: auto;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.42rem;
    line-height: 1;
    white-space: nowrap;
  }

  .brand-tagline {
    font-size: .7rem;
    white-space: nowrap;
  }

  .site-nav,
  .property-nav-v7 {
    order: 4;
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 7px 0 1px;
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar,
  .property-nav-v7::-webkit-scrollbar {
    display: none;
  }

  .site-nav a,
  .property-nav-v7 a {
    flex: 0 0 auto;
    font-size: .72rem;
    line-height: 1;
    padding: 8px 9px;
    border-radius: 999px;
  }

  .site-nav a.active,
  .property-nav-v7 a.active {
    background: rgba(121, 82, 55, .10);
  }

  .nav-cta,
  .account-cta-v7 {
    padding: 9px 10px !important;
    font-size: .7rem !important;
    border-radius: 999px;
  }

  .account-nav-v7 {
    margin-left: auto;
    flex: 0 0 auto;
    gap: 8px;
  }

  .account-nav-v7 a:first-child {
    display: none;
  }

  .property-header-search {
    order: 3;
    display: flex !important;
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 2px 0 0;
  }

  .property-header-search input {
    min-width: 0;
    width: 100%;
    font-size: .85rem;
  }

  .property-header-search button {
    flex: 0 0 44px;
  }

  .home-search,
  .search-page-form,
  .property-search-form,
  .review-search-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-search input,
  .search-page-form input,
  .property-search-form input,
  .review-search-form input {
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .site-header,
  .property-layout-v7 .site-header,
  .property-header-v7 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand,
  .site-header .brand,
  .property-header-v7 .brand {
    max-width: calc(100% - 96px);
  }

  .brand-mark {
    width: 34px;
    min-width: 34px;
  }

  .brand-name {
    font-size: 1.2rem !important;
  }

  .brand-tagline {
    display: none !important;
  }

  .site-nav,
  .property-nav-v7 {
    gap: 6px;
    padding-top: 5px;
  }

  .site-nav a,
  .property-nav-v7 a {
    font-size: .68rem;
    padding: 7px 8px;
  }

  .nav-cta,
  .account-cta-v7 {
    padding: 8px 9px !important;
    font-size: .66rem !important;
  }
}

/* v8.6 — HARD mobile/tablet top-bar fix
   Forces the header navigation to wrap into a neat grid instead of running off-screen. */
@media (max-width: 980px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .site-header:not(.property-header-v7),
  .property-layout-v7 .site-header,
  .property-header-v7 {
    width: 100% !important;
    max-width: 100vw !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 10px 12px 12px !important;
    overflow: hidden !important;
  }

  .site-header .brand,
  .property-header-v7 .brand,
  .property-layout-v7 .brand,
  .brand {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 9px !important;
    text-align: left !important;
  }

  .brand-mark {
    width: 36px !important;
    min-width: 36px !important;
    height: auto !important;
  }

  .brand-copy { min-width: 0 !important; }

  .brand-name {
    font-size: clamp(22px, 6.2vw, 30px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .brand-tagline {
    font-size: clamp(8px, 2.3vw, 10px) !important;
    letter-spacing: .16em !important;
    white-space: nowrap !important;
  }

  .site-nav,
  .property-nav-v7 {
    order: 5 !important;
    width: min(100%, 560px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    flex: 0 0 auto !important;
    overflow: visible !important;
    white-space: normal !important;
    scrollbar-width: none !important;
  }

  .site-nav::-webkit-scrollbar,
  .property-nav-v7::-webkit-scrollbar {
    display: none !important;
  }

  .site-nav a,
  .property-nav-v7 a {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 34px !important;
    padding: 8px 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 999px !important;
    background: rgba(142, 116, 96, .10) !important;
    border: 1px solid rgba(142, 116, 96, .18) !important;
    color: var(--espresso) !important;
    font-size: clamp(10px, 2.6vw, 12px) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    box-shadow: none !important;
  }

  .site-nav a.active,
  .property-nav-v7 a.active {
    background: rgba(142, 116, 96, .18) !important;
    color: var(--taupe-deep) !important;
  }

  .site-nav a.active::after,
  .property-nav-v7 a.active::after {
    display: none !important;
  }

  .site-nav .nav-cta,
  .nav-cta,
  .account-cta-v7 {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 40px !important;
    padding: 10px 12px !important;
    background: var(--taupe-deep) !important;
    color: #fff !important;
    border: 0 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  .account-nav-v7 {
    width: min(100%, 560px) !important;
    margin: 0 auto !important;
    justify-content: center !important;
  }

  .property-header-search {
    order: 4 !important;
    width: min(100%, 560px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .home-hero {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    padding-top: 42px !important;
  }
}

@media (max-width: 430px) {
  .site-nav,
  .property-nav-v7 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .site-nav .nav-cta,
  .nav-cta,
  .account-cta-v7 {
    grid-column: 1 / -1 !important;
  }

  .site-nav a,
  .property-nav-v7 a {
    font-size: 11px !important;
  }
}


/* v8.7 — Mobile single-row navigation fix
   Replaces the v8.6 grid buttons with a compact one-line mobile nav. */
@media (max-width: 980px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .site-header:not(.property-header-v7),
  .property-layout-v7 .site-header,
  .property-header-v7 {
    width: 100% !important;
    max-width: 100vw !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 10px 12px !important;
    overflow: hidden !important;
  }

  .site-header .brand,
  .property-header-v7 .brand,
  .property-layout-v7 .brand,
  .brand {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
  }

  .brand-mark {
    width: 30px !important;
    min-width: 30px !important;
    height: auto !important;
  }

  .brand-name {
    font-size: clamp(20px, 5.7vw, 28px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .brand-tagline {
    font-size: 8px !important;
    letter-spacing: .15em !important;
    white-space: nowrap !important;
  }

  /* Keep nav in ONE row on phone */
  .site-nav,
  .property-nav-v7 {
    order: 5 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 2px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  /* Hide only the least-critical link on tiny headers so the row fits cleanly. */
  .site-nav a[href="#how-it-works"],
  .site-nav a[href="index.html#how-it-works"],
  .property-nav-v7 a[href="index.html#how-it-works"] {
    display: none !important;
  }

  .site-nav a,
  .property-nav-v7 a {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 30px !important;
    padding: 6px 7px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--espresso) !important;
    font-size: clamp(9px, 2.75vw, 12px) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    box-shadow: none !important;
    flex: 0 1 auto !important;
  }

  .site-nav a.active,
  .property-nav-v7 a.active {
    background: transparent !important;
    color: var(--taupe-deep) !important;
  }

  .site-nav a.active::after,
  .property-nav-v7 a.active::after {
    display: none !important;
  }

  .site-nav .nav-cta,
  .nav-cta,
  .account-cta-v7 {
    width: auto !important;
    max-width: none !important;
    min-height: 31px !important;
    padding: 7px 10px !important;
    border-radius: 999px !important;
    background: var(--taupe-deep) !important;
    color: #fff !important;
    border: 0 !important;
    font-size: 0 !important;
    font-weight: 800 !important;
    flex: 0 0 auto !important;
    box-shadow: none !important;
    white-space: nowrap !important;
  }

  .site-nav .nav-cta::after,
  .nav-cta::after,
  .account-cta-v7::after {
    content: "Review";
    font-size: clamp(9px, 2.65vw, 11px) !important;
    line-height: 1 !important;
  }

  .property-header-search {
    display: none !important;
  }

  .account-nav-v7 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .account-nav-v7 a:first-child {
    display: none !important;
  }

  .home-hero {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    padding-top: 42px !important;
  }
}

@media (max-width: 390px) {
  .site-header:not(.property-header-v7),
  .property-layout-v7 .site-header,
  .property-header-v7 {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }

  .site-nav,
  .property-nav-v7 {
    gap: 2px !important;
  }

  .site-nav a,
  .property-nav-v7 a {
    font-size: 9px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .site-nav .nav-cta,
  .nav-cta,
  .account-cta-v7 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .site-nav .nav-cta::after,
  .nav-cta::after,
  .account-cta-v7::after {
    font-size: 9px !important;
  }
}

/* v8.8: Remove automatic property preview image. Renter photos appear only inside reviews. */
.property-hero-v7.no-property-preview {
  grid-template-columns: 1fr;
  align-items: start;
}
.property-hero-v7.no-property-preview .property-title-v7 {
  max-width: 860px;
}
.property-hero-v7.no-property-preview .property-title-v7 h1 {
  max-width: 100%;
}
@media (max-width: 850px) {
  .property-hero-v7.no-property-preview { grid-template-columns: 1fr; }
}


/* v8.9: remove all automatic property preview photos. Renter photos only appear inside reviews. */
.property-cover-v7,
.property-hero-v7 .property-cover-v7,
img[src*="property-preview"] {
  display: none !important;
}
.property-hero-v7 {
  grid-template-columns: 1fr !important;
}
.property-hero-v7 .property-title-v7 {
  min-height: auto !important;
}
