:root {
  --ink: #15201c;
  --muted: #5a6b63;
  --line: #e6e9e4;
  --paper: #ffffff;
  --soft: #f6f8f4;
  --accent: #0f8b6f;
  --accent-dark: #0a6c55;
  --accent-soft: #e7f4ef;
  --sun: #f3b44b;
  --sea: #1d75a8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(20, 40, 30, 0.06);
  --shadow: 0 14px 40px rgba(20, 40, 30, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 40, 30, 0.16);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3,
.listing-title,
.owner-form-heading h3,
.seo-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.4px;
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(15, 139, 111, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.header-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 139, 111, 0.36);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 15px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-field {
  display: grid;
  gap: 4px;
  min-width: 128px;
}

.language-field label {
  color: var(--muted);
  font-size: 12px;
}

.language-field select {
  min-height: 38px;
  padding: 6px 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, 82vh);
  display: flex;
  align-items: center;
  padding: clamp(38px, 8vw, 88px) clamp(18px, 4vw, 56px);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg, rgba(8, 25, 20, 0.82), rgba(8, 25, 20, 0.34) 62%, rgba(8, 25, 20, 0.14)),
    url("https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&w=1800&q=80") center / cover;
  transform: scale(1.04);
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  to { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(243, 180, 75, 0.18);
  color: var(--sun);
  letter-spacing: 0.6px;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.5px;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.primary-action,
.submit-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 139, 111, 0.24);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.primary-action:hover,
.submit-button:hover,
.whatsapp-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 139, 111, 0.32);
}

.whatsapp-button-disabled,
.whatsapp-button-disabled:hover {
  color: #667085;
  background: #e4e7ec;
  cursor: pointer;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #344054;
  border-radius: 8px;
  color: #344054;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.price-on-request {
  color: #475467;
  font-size: 15px;
}

.province-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 30px;
  align-items: start;
}

.province-section[hidden] {
  display: none;
}

.province-copy p {
  color: #475467;
  line-height: 1.7;
}

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

.province-side {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.locality-details {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.locality-details article {
  background: #fff;
  border: 1px solid #d6dbe6;
  border-radius: 8px;
  padding: 16px;
}

.locality-details-full {
  grid-template-columns: 1fr;
}

.locality-details-full article {
  max-width: 760px;
}

.locality-details h3 {
  font-size: 1rem;
  margin: 0 0 10px;
}

.locality-details ul {
  color: #475467;
  line-height: 1.55;
  margin: 0;
  padding-left: 18px;
}

.locality-details p {
  margin: 0 0 12px;
  color: #475467;
  line-height: 1.55;
}

.detail-link {
  color: #0f8b6f;
  font-weight: 800;
  text-decoration: none;
}

.territorial-ad-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 150px;
  margin-top: 22px;
  padding: 22px;
  color: #fff;
  background: #174a43;
  border: 1px solid #0f3b35;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 74, 67, 0.16);
}

.territorial-ad-banner .ad-label {
  margin: 0 0 8px;
  color: #f5d27a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.territorial-ad-banner h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.territorial-ad-banner p:not(.ad-label) {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.territorial-ad-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: #1d2939;
  background: #f5d27a;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.territorial-ad-banner a:hover {
  background: #ffe49e;
}

.premium-box {
  position: sticky;
  top: 18px;
  padding: 18px;
  background: #101828;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.18);
}

.premium-box h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.premium-box p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.premium-listing {
  padding: 12px;
  margin: 12px 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.premium-listing strong {
  display: block;
  margin-bottom: 4px;
}

.premium-box a {
  color: #fff;
  font-weight: 800;
}

.province-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.province-gallery figure {
  margin: 0;
  min-width: 0;
}

.province-gallery figure:first-child {
  grid-row: auto;
}

.province-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.province-gallery a {
  color: #475467;
  font-size: 12px;
}

@media (max-width: 800px) {
  .province-section {
    grid-template-columns: 1fr;
  }

  .premium-box {
    position: static;
  }

  .locality-details {
    grid-template-columns: 1fr;
  }

  .territorial-ad-banner {
    grid-template-columns: 1fr;
  }

  .territorial-ad-banner a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

.search-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) repeat(2, minmax(150px, 0.8fr)) minmax(96px, 0.55fr) auto;
  gap: 18px 16px;
  width: 100%;
  max-width: 1120px;
  margin: 28px 0 0;
  padding: 20px;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero .search-band { color: var(--ink); }
.search-band .field { min-width: 0; display: grid; gap: 6px; }
.search-band label { color: #344054; font-size: 12px; font-weight: 700; }
.search-band select,
.search-band input { width: 100%; min-height: 48px; }
.search-submit {
  align-self: end;
  min-height: 46px;
  padding: 0 26px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--accent);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}

.search-submit:hover {
  background: var(--accent-dark);
}
.search-band.is-loading { opacity: 0.72; pointer-events: none; }
.search-error { grid-column: 1 / -1; margin: 0; color: #b42318; font-weight: 800; }

.promise-band {
  max-width: 1120px;
  margin: 22px auto 0;
  padding: 0 clamp(18px, 4vw, 28px);
}

.promise-band p {
  margin: 0;
  padding: 16px 20px;
  color: #5a4a1e;
  background: #fff7e6;
  border: 1px solid #f3d49c;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.coverage-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  max-width: 1120px;
  margin: 18px auto 0;
  padding: 0 clamp(18px, 4vw, 28px);
}

.coverage-strip span,
.coverage-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.coverage-strip span {
  color: #475467;
}

.coverage-strip a {
  color: #173f3a;
  background: #fff;
  border: 1px solid #d6dbe6;
  box-shadow: var(--shadow-sm);
}

.route-page[hidden] {
  display: none;
}

.routed-section[hidden] {
  display: none;
}

.route-page > p {
  max-width: 920px;
  color: #475467;
  line-height: 1.75;
}

.route-detail {
  display: none;
}

.routed-section.is-route-view .route-detail {
  display: grid;
}

.routed-section.is-route-view .home-summary-link {
  display: none;
}

.content-columns,
.contact-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.content-columns > div,
.contact-options > div {
  padding: 18px 0;
  border-top: 3px solid #0f8b6f;
}

.content-columns h3,
.content-columns p,
.contact-options strong,
.contact-options span {
  margin: 0;
}

.content-columns p,
.contact-options span {
  display: block;
  margin-top: 8px;
  color: #475467;
  line-height: 1.6;
}

.process-list {
  gap: 0;
  max-width: 860px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 62px;
  padding: 4px 0 22px 56px;
  color: #475467;
  line-height: 1.6;
  counter-increment: process;
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: #0f8b6f;
  border-radius: 50%;
  font-weight: 900;
}

.legal-detail {
  gap: 8px;
  max-width: 900px;
  margin-top: 24px;
}

.legal-detail h3,
.legal-detail p {
  margin: 0;
}

.legal-detail h3 {
  margin-top: 16px;
}

.legal-detail p {
  color: #475467;
  line-height: 1.65;
}

.section-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 18px;
  color: #08745d;
  font-weight: 900;
  text-decoration: none;
}

.section-link::after {
  content: "\2192";
  margin-left: 8px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.route-grid article {
  padding: 18px;
  background: #fff;
  border: 1px solid #d6dbe6;
  border-radius: 8px;
}

.route-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.route-grid p {
  margin: 0;
  color: #475467;
  line-height: 1.6;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-journey-strip {
  padding-top: 0;
}

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

.home-journey-grid article {
  padding: 22px;
  background: linear-gradient(180deg, #f8fbfa 0%, #eef6f4 100%);
  border: 1px solid #d6e4df;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(23, 63, 58, 0.06);
}

.home-journey-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #0f6b5d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-journey-grid h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.home-journey-grid p {
  margin: 0;
  color: #475467;
  line-height: 1.65;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #1d2939;
  background: #fff;
  border: 1px solid #c8ced8;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 4vw, 28px);
}

.home-spots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.home-spot {
  display: grid;
  min-height: 178px;
  padding: 24px;
  color: #1d2939;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid #0f8b6f;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-spot-premium {
  border-top-color: #d48a16;
}

.home-spot-pro {
  border-top-color: #2563a8;
}

.home-spot span {
  color: #08745d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-spot strong {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.home-spot small {
  align-self: end;
  margin-top: 16px;
  color: #475467;
  font-size: 14px;
  line-height: 1.5;
}

.home-spot:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.seo-directory { padding-top: 42px; }
.seo-directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.seo-directory-grid nav { display: grid; align-content: start; gap: 10px; padding-top: 16px; border-top: 3px solid #0f8b6f; }
.seo-directory-grid h3 { margin: 0 0 8px; }
.seo-directory-grid a { color: #344054; font-weight: 750; text-decoration: none; }
.seo-directory-grid a:hover { color: #08745d; text-decoration: underline; }
.seo-directory-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.seo-directory-actions a { display: inline-flex; min-height: 44px; align-items: center; padding: 0 15px; color: #08745d; background: #fff; border: 1px solid #b8ded3; border-radius: 8px; font-weight: 900; text-decoration: none; }

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

.network-portal {
  display: grid;
  gap: 12px;
  min-height: 176px;
  padding: 20px;
  border: 1px solid #d8e3df;
  border-radius: 8px;
  background: #fff;
}

.network-portal h2 {
  margin: 4px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.network-portal h2 a,
.network-url {
  color: #08745d;
  font-weight: 850;
  text-decoration: none;
}

.network-portal h2 a:hover,
.network-url:hover {
  text-decoration: underline;
}

.network-portal p {
  margin: 0;
  color: #475467;
}

.network-portal.is-current {
  border-color: #0f8b6f;
  box-shadow: inset 0 0 0 2px rgba(15, 139, 111, 0.12);
}

.current-domain {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: #e7f5ef;
  color: #08624f;
  font-weight: 850;
}
.listing-title a { color: inherit; text-decoration: none; }

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

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

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

.listing-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.listing-image-wrap {
  position: relative;
  overflow: hidden;
}

.listing-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #d7e1e8;
  transition: transform 0.5s ease;
}

.listing-card:hover .listing-image-wrap img {
  transform: scale(1.05);
}

.photo-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 28px);
  padding: 7px 13px;
  color: #fff;
  background: rgba(15, 139, 111, 0.95);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.photo-badge::before {
  content: "\2713";
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  place-items: center;
  color: var(--accent-dark);
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}


.photo-badge.demo-card-badge {
  background: rgba(52, 64, 84, 0.96);
  color: #fff;
  letter-spacing: 0.08em;
}

.photo-badge.demo-card-badge::before {
  content: "D";
  color: #344054;
  background: #fff;
}

.demo-disclaimer {
  grid-column: 1 / -1;
  padding: 16px 18px;
  color: #344054;
  background: linear-gradient(135deg, #f9fafb 0%, #eef4ff 100%);
  border: 1px solid #d0d5dd;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.demo-disclaimer strong {
  color: #101828;
}

.demo-disclaimer p {
  margin: 8px 0 0;
  color: #475467;
}

.demo-disclaimer a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.listing-badges span.demo-badge {
  color: #344054;
  background: #f2f4f7;
  border-color: #d0d5dd;
}

.photo-badge.premium-card-badge {
  background: rgba(243, 180, 75, 0.96);
  color: #4a3408;
}

.photo-badge.premium-card-badge::before {
  content: "\2605";
  color: var(--sun);
  background: #4a3408;
}

.listing-body {
  display: grid;
  height: 100%;
  gap: 12px;
  padding: 16px;
}

.availability-line { margin: 0; color: #475467; font-size: 14px; font-weight: 800; }
.availability-line.is-available { color: #08745d; }
.demo-listing-disclaimer {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #f2c94c;
  border-radius: 12px;
  background: #fff8db;
  color: #6b4e00;
  font-size: 13px;
  font-weight: 800;
}
.availability-freshness { margin: -6px 0 0; color: #667085; font-size: 12px; }

.listing-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.listing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.listing-badges span {
  padding: 4px 10px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid #cce6dd;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}

.listing-description {
  margin: 0;
  color: #475467;
}

.listing-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.listing-service-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #344054;
  background: #f8fafc;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.price {
  font-size: 21px;
  font-weight: 800;
  font-family: var(--font-display);
}

.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
}

.price-row {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.listing-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.listing-inline-note {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.listing-inline-action {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px 22px;
  text-align: center;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.empty-state strong {
  display: block;
  color: #101828;
  font-size: 20px;
}

.empty-state p {
  max-width: 640px;
  margin: 10px auto 0;
  line-height: 1.65;
}

.empty-state a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent-dark);
  font-weight: 800;
}

.support-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.support-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.support-card {
  display: grid;
  gap: 8px;
  min-width: 260px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(28, 39, 62, 0.08);
}

.support-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
}

.support-card:hover strong {
  background: var(--accent-dark);
}

.professionals-section {
  border-top: 1px solid var(--line);
}

.professionals-copy {
  max-width: 760px;
  margin-top: -8px;
  color: var(--muted);
}

.professional-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.professional-tags span {
  padding: 9px 12px;
  color: #344054;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.owner-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.form-intro p:not(.eyebrow) {
  color: var(--muted);
  max-width: 420px;
}

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

.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.owner-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--accent-dark);
  background: #e8f5f1;
  border: 1px solid #b8ded3;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.owner-service-grid article {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.owner-service-grid h3,
.owner-service-grid p {
  margin: 0;
}

.owner-service-grid h3 {
  font-size: 18px;
}

.owner-service-grid p {
  margin-top: 8px;
  color: var(--muted);
}

.listing-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(28, 39, 62, 0.08);
}

.owner-form-heading {
  display: grid;
  gap: 6px;
  padding-bottom: 4px;
}

.owner-form-heading h3,
.owner-form-heading p {
  margin: 0;
}

.owner-form-heading h3 {
  font-size: 24px;
}

.owner-form-heading p {
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field small {
  color: var(--muted);
  line-height: 1.45;
}

.form-fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-fieldset legend {
  padding: 0 8px;
  color: #344054;
  font-weight: 800;
}

.wizard-step-heading {
  margin: 0 0 18px;
}

.wizard-step-heading > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wizard-step-heading h4 {
  margin: 5px 0 6px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(25px, 3vw, 34px);
}

.wizard-step-heading p {
  margin: 0;
  color: var(--muted);
}

.verification-placeholder {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px dashed #b87914;
  border-radius: 8px;
  background: #fff8e8;
  color: #6d4608;
  font-size: 14px;
  line-height: 1.45;
}

.registration-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  line-height: 1.45;
}

.registration-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.listing-wizard-page { display: grid; gap: 18px; }
.listing-wizard-page[hidden] { display: none; }
.wizard-navigation { display: flex; justify-content: space-between; gap: 12px; padding-top: 8px; }
.wizard-navigation .secondary-action { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; }
.wizard-navigation .submit-button { width: auto; margin-left: auto; }
.quick-mode-panel { padding: 14px 16px; background: #f6fbf9; border: 1px solid #c8d8d4; border-radius: 8px; }
.quick-mode-panel label { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 0; cursor: pointer; }
.quick-mode-panel input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.quick-mode-panel strong, .quick-mode-panel small { display: block; }
.quick-mode-panel small { margin-top: 3px; color: var(--muted); line-height: 1.45; }
.requirement-badge { display: inline-flex; margin-left: 8px; padding: 3px 7px; border-radius: 999px; font-size: 11px; font-weight: 900; vertical-align: middle; }
.requirement-badge.is-required { color: #8a2c0d; background: #fff2dd; border: 1px solid #f3c37a; }
.requirement-badge.is-optional { color: #475467; background: #eef2f6; border: 1px solid #d0d5dd; }

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

.amenities-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.amenities-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.bed-detail-grid, .room-detail-grid, .room-checkbox-grid, .service-catalog > section > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; }
.bed-detail-grid label, .room-detail-grid label { display: grid; grid-template-columns: 1fr 78px; align-items: center; gap: 10px; font-weight: 600; }
.room-organization { display: grid; gap: 14px; }
.room-detail-card { border: 1px solid var(--border); border-radius: 8px; padding: 14px; background: #fff; }
.room-detail-card h5 { margin: 0 0 12px; color: var(--ink); font-size: 15px; }
.room-checkbox-grid label { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.room-checkbox-grid input { width: 14px; height: 14px; accent-color: var(--accent); }
.service-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.service-filters button { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 12px; color: var(--ink); font: inherit; font-size: 13px; cursor: pointer; }
.service-filters button.is-active { border-color: var(--accent); background: #effaf7; color: var(--accent); font-weight: 800; }
.service-catalog { display: grid; gap: 18px; }
.service-catalog h5 { margin: 0 0 10px; color: var(--ink); font-size: 15px; }
.service-catalog label { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.service-catalog input { width: 14px; height: 14px; accent-color: var(--accent); }
.cleaning-fieldset { gap: 12px; }
.cleaning-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.cleaning-card summary { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 14px; cursor: pointer; list-style: none; }
.cleaning-card summary::-webkit-details-marker { display: none; }
.cleaning-card summary strong { display: block; color: var(--ink); }
.cleaning-card summary small { display: block; margin-top: 3px; color: var(--muted); font-weight: 500; }
.cleaning-card summary em { justify-self: end; border-radius: 999px; padding: 5px 9px; background: #fff7ed; color: #9a3412; font-size: 12px; font-style: normal; font-weight: 800; }
.cleaning-card summary em.is-ready { background: #ecfdf5; color: #047857; }
.cleaning-card[open] { box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06); }
.cleaning-card > :not(summary) { margin: 0 14px 14px; }
.card-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 999px; background: #effaf7; color: var(--accent); font-weight: 900; }
.radio-card-group { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 12px; }
.radio-card-group label, .switch-row { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; background: #fbfdfc; font-weight: 700; }
.radio-card-group input, .switch-row input { width: 16px; height: 16px; accent-color: var(--accent); }
.conditional-fields[hidden] { display: none; }
.conditional-fields { display: grid; gap: 10px; }
.linen-panel { display: grid; gap: 10px; border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: #fbfdfc; }
.linen-panel select, .linen-panel input { width: 100%; }

@media (max-width: 620px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .bed-detail-grid, .room-detail-grid, .room-checkbox-grid, .service-catalog > section > div { grid-template-columns: 1fr; }
  .cleaning-card summary { grid-template-columns: 30px 1fr; }
  .cleaning-card summary em { grid-column: 2; justify-self: start; }
  .radio-card-group { grid-template-columns: 1fr; }
}

.optional-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.field-hint {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.consent-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.consent-box label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: #344054;
  font-size: 13px;
  line-height: 1.45;
}

.consent-box input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

label {
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d3dbd5;
  border-radius: var(--radius-sm);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 139, 111, 0.18);
  border-color: var(--accent);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

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

[aria-invalid="true"] {
  border-color: #b42318;
  outline: 3px solid rgba(180, 35, 24, 0.14);
}

.listing-photo-preview {
  width: min(100%, 420px);
  max-height: 260px;
  margin-top: 4px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.help-whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  color: #fff;
  background: #16803c;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(22, 128, 60, 0.32);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.help-whatsapp-fab span {
  font-size: 12px;
  font-weight: 700;
}

.help-whatsapp-fab:hover {
  color: #fff;
  background: #0f6b31;
  transform: translateY(-2px);
}

.footer {
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #eaf0f6;
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-bottom: 14px;
}

.footer a {
  color: #344054;
  font-weight: 800;
  text-decoration: none;
}

.seo-route main > section:not(#seoPage) { display: none !important; }
.owner-publish-page main {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px) clamp(18px, 4vw, 28px) 80px;
}

.owner-publish-page .owner-publish-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-top: 0;
}

.owner-publish-page .owner-panel,
.owner-publish-page .listing-form {
  width: 100%;
}

.owner-process-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.owner-process-summary article {
  padding: 16px;
  background: #fff;
  border: 1px solid #d6dbe6;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.owner-process-summary strong {
  display: block;
  margin-bottom: 6px;
  color: #173f3a;
}

.owner-process-summary p {
  margin: 0;
  color: #475467;
}

.owner-trust-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 30px);
  background:
    radial-gradient(circle at top right, rgba(190, 228, 219, 0.7), transparent 38%),
    linear-gradient(180deg, #f8fbfa 0%, #eef6f4 100%);
  border: 1px solid #c8d8d4;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(23, 63, 58, 0.08);
}

.owner-trust-heading h1 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.owner-trust-heading p,
.owner-trust-note,
.owner-inline-notes p {
  margin: 0;
  color: #475467;
  line-height: 1.65;
}

.owner-info-grid,
.owner-inline-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.owner-info-card,
.owner-inline-notes article {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d6e4df;
  border-radius: 12px;
}

.owner-info-card strong,
.owner-inline-notes strong {
  display: block;
  margin-bottom: 6px;
  color: #173f3a;
}

.owner-inline-notes {
  margin-top: 4px;
}

.owner-flow-note {
  margin: 6px 0 0;
  color: #b42318;
  font-weight: 700;
}

.owner-trust-note a {
  color: #0f6b5d;
  font-weight: 700;
}

.static-page-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px) clamp(18px, 4vw, 28px) 80px;
}

.static-page-panel {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 30px);
  background: linear-gradient(180deg, #fbfcfc 0%, #f3f7f6 100%);
  border: 1px solid #d6e4df;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(23, 63, 58, 0.08);
}

.static-page-panel h1,
.static-page-panel h2,
.static-page-panel h3 {
  margin: 0;
}

.static-page-panel p,
.static-page-panel li {
  color: #475467;
  line-height: 1.7;
}

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

.static-page-card {
  padding: 18px;
  background: #fff;
  border: 1px solid #d6e4df;
  border-radius: 12px;
}

.static-page-list {
  margin: 0;
  padding-left: 20px;
}

.notice-box {
  padding: 16px 18px;
  color: #7a2e0b;
  background: #fff2dd;
  border: 1px solid #f3c37a;
  border-radius: 12px;
  font-weight: 700;
}

.faq-stack {
  display: grid;
  gap: 18px;
}

.faq-block {
  padding: 20px;
  background: #fff;
  border: 1px solid #d6e4df;
  border-radius: 14px;
}

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

.faq-item {
  padding: 16px 18px;
  background: #f8fbfa;
  border: 1px solid #dce7e2;
  border-radius: 12px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
}
.seo-page { max-width: 1180px; margin: 0 auto; padding: 28px clamp(18px, 4vw, 28px) 80px; }
.seo-breadcrumb { margin-bottom: 34px; overflow-x: auto; }
.seo-breadcrumb ol { display: flex; align-items: center; gap: 8px; min-width: max-content; margin: 0; padding: 0; list-style: none; color: #667085; font-size: 13px; }
.seo-breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #98a2b3; }
.seo-breadcrumb a { color: #475467; }
.seo-page-hero { max-width: 900px; padding: clamp(28px, 5vw, 58px) 0; }
.seo-page-hero h1 { max-width: 880px; margin: 8px 0 18px; font-size: clamp(34px, 5vw, 64px); line-height: 1.04; letter-spacing: 0; }
.seo-page-hero > p:not(.eyebrow) { max-width: 760px; margin: 0; color: #475467; font-size: 19px; line-height: 1.65; }
.seo-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.seo-content-block { padding: 42px 0; border-top: 1px solid #d6dbe6; }
.seo-content-block > h2, .seo-related > h2, .seo-owner-cta h2 { max-width: 760px; margin: 0 0 16px; font-size: clamp(26px, 3vw, 38px); line-height: 1.15; letter-spacing: 0; }
.seo-poi-list { display: grid; gap: 16px; max-width: 850px; margin: 20px 0 0; padding: 0; list-style: none; }
.seo-poi-item { padding: 18px; background: #fff; border: 1px solid #d6dbe6; border-radius: 8px; }
.seo-poi-item p { margin: 8px 0 0; color: #475467; line-height: 1.65; }
.seo-poi-distance { font-size: 14px; color: #667085 !important; }
.seo-locality-distances p { max-width: 850px; margin: 0 0 10px; color: #475467; line-height: 1.65; }
.territory-home { max-width: 1180px; margin: 0 auto; padding: 56px clamp(18px, 4vw, 28px); }
.territory-section { position: relative; }
.territory-section > h2 { color: #173f3a; }
.territory-poi-list, .territory-distance-list { display: grid; gap: 14px; max-width: 920px; margin: 20px 0 0; padding: 0; list-style: none; }
.territory-poi-item { border-color: #c8d8d4; box-shadow: 0 14px 36px rgba(23, 74, 67, 0.08); }
.territory-poi-item a { color: #0f6b5d; text-decoration: none; }
.territory-poi-item a:hover { text-decoration: underline; }
.territory-distance-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.territory-distance-list li { padding: 16px 18px; color: #475467; background: #f6fbf9; border: 1px solid #c8d8d4; border-radius: 12px; line-height: 1.55; }
.territory-note { max-width: 850px; margin: 16px 0 0; color: #667085; font-size: 14px; line-height: 1.6; }
.photo-status-badge { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; color: #533f03; background: #fff4c2; border: 1px solid #f1cf65; border-radius: 999px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; }
.photo-status-real_local_photo_ok { color: #075e4f; background: #dff8ef; border-color: #8bd8c5; }
@media (max-width: 720px) { .territory-home { padding-top: 38px; padding-bottom: 38px; } .territory-distance-list { grid-template-columns: 1fr; } }
.seo-content-block > p { max-width: 850px; margin: 0; color: #475467; font-size: 17px; line-height: 1.75; }
.seo-listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 24px; }
.seo-listing-card { overflow: hidden; background: #fff; border: 1px solid #d6dbe6; border-radius: 8px; }
.seo-listing-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #e4e7ec; }
.seo-listing-card > div { display: grid; gap: 8px; padding: 16px; }
.seo-listing-card h3, .seo-listing-card p { margin: 0; }
.seo-listing-card h3 { font-size: 20px; }
.seo-listing-card h3 a { color: #1d2939; text-decoration: none; }
.seo-listing-card p:not(.eyebrow) { color: #667085; }
.seo-empty { max-width: 820px; margin-top: 22px; padding: 24px; background: #fff; border: 1px dashed #98a2b3; border-radius: 8px; }
.seo-empty h3, .seo-empty p { margin: 0; }
.seo-empty p { margin-top: 8px; color: #475467; line-height: 1.6; }
.seo-empty a, .safety-link { display: inline-flex; margin-top: 14px; color: #08745d; font-weight: 900; }
.seo-owner-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center; margin: 34px 0; padding: 28px; color: #fff; background: #174a43; border-radius: 8px; }
.seo-owner-cta h2, .seo-owner-cta p { margin-top: 0; color: #fff; }
.seo-owner-cta > a { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; color: #1d2939; background: #f5d27a; border-radius: 8px; font-weight: 900; text-decoration: none; }
.seo-faq { max-width: 900px; }
.seo-faq details { padding: 18px 0; border-bottom: 1px solid #d6dbe6; }
.seo-faq summary { cursor: pointer; font-weight: 900; }
.seo-faq p { margin: 12px 0 0; color: #475467; line-height: 1.6; }
.seo-related { padding-top: 42px; border-top: 1px solid #d6dbe6; }
.seo-related ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.seo-related a { display: inline-flex; padding: 10px 12px; color: #344054; background: #fff; border: 1px solid #d6dbe6; border-radius: 8px; font-weight: 800; text-decoration: none; }
.listing-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, minmax(150px, 260px)); gap: 8px; overflow: hidden; margin-bottom: 34px; border-radius: 8px; }
.listing-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; background: #e4e7ec; }
.listing-gallery img:first-child { grid-row: 1 / 3; }
.listing-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: start; }
.listing-detail-layout article > section { padding: 28px 0; border-top: 1px solid #d6dbe6; }
.listing-detail-layout h2 { margin: 0 0 14px; font-size: 28px; }
.listing-detail-layout p { color: #475467; line-height: 1.7; }
.listing-contact-panel { position: sticky; top: 18px; display: grid; gap: 14px; padding: 22px; background: #fff; border: 1px solid #d6dbe6; border-radius: 8px; box-shadow: 0 10px 26px rgba(28, 39, 62, 0.08); }
.listing-contact-panel p, .listing-contact-panel .safety-link { margin: 0; }
.listing-detail-price { font-size: 24px; }
.demo-contact-notice { display: grid; gap: 6px; width: 100%; padding: 14px 16px; color: #344054; background: #f8fafc; border: 1px solid #d6dbe6; border-radius: 8px; line-height: 1.5; }
.demo-contact-notice strong { color: #1d2939; }
.demo-contact-notice span { color: #475467; }
.demo-detail-notice { max-width: 760px; }
.listing-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.listing-facts div { padding: 14px; background: #f8fafc; border: 1px solid #e4e7ec; border-radius: 8px; }
.listing-facts dt { color: #667085; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.listing-facts dd { margin: 5px 0 0; font-weight: 900; }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; padding-left: 20px; }
.listing-enquiry-form { display: grid; gap: 16px; max-width: 760px; padding: 22px; background: #fff; border: 1px solid #d6dbe6; border-radius: 8px; }
.listing-enquiry-form label { display: grid; gap: 7px; }
.listing-enquiry-form .consent-inline { grid-template-columns: 18px 1fr; align-items: start; font-size: 13px; line-height: 1.5; }
.listing-enquiry-form .consent-inline input { width: 18px; min-height: 18px; margin-top: 2px; }
.analytics-consent { position: fixed; right: 16px; bottom: 16px; left: 16px; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 18px; max-width: 900px; margin: 0 auto; padding: 16px; color: #fff; background: #101828; border: 1px solid #344054; border-radius: var(--radius-sm); box-shadow: 0 16px 44px rgba(16, 24, 40, 0.3); }
.analytics-consent p { margin: 0; line-height: 1.5; }
.analytics-consent a { color: #f5d27a; }
.analytics-consent > div { display: flex; gap: 8px; }
.analytics-consent button { min-height: 40px; padding: 0 14px; border: 1px solid #667085; border-radius: 10px; color: #fff; background: #344054; font-weight: 900; cursor: pointer; }
.analytics-consent button[data-consent="granted"] { color: #1d2939; background: #f5d27a; border-color: #f5d27a; }

@media (max-width: 900px) {
  .listing-grid,
  .support-section,
  .owner-section,
  .owner-service-grid,
  .owner-process-summary,
  .home-journey-grid,
  .owner-info-grid,
  .owner-inline-notes,
  .static-page-grid,
  .route-grid,
  .home-spots,
  .content-columns,
  .contact-options,
  .seo-listing-grid,
  .seo-owner-cta,
  .listing-detail-layout,
  .seo-directory-grid,
  .network-grid {
    grid-template-columns: 1fr;
  }

  .search-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .search-submit { width: 100%; }

  .listing-contact-panel { position: static; }

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

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .header-cta { justify-content: center; }

  .nav-toggle { display: grid; place-items: center; align-self: flex-end; }
  .nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
  .nav.is-open { display: flex; }
  .header-actions > .nav:first-child { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }

  .hero {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .search-band {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 14px;
  }

  .form-row,
  .price-row,
  .listing-cta-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-button {
    width: 100%;
  }

  .seo-page-hero h1 { font-size: 38px; }
  .seo-page-hero > p:not(.eyebrow) { font-size: 17px; }
  .seo-hero-actions > a { width: 100%; }
  .listing-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 140px; }
  .listing-gallery img:first-child { grid-column: 1 / 3; grid-row: auto; }
  .listing-whatsapp-sticky { position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 50; width: auto; box-shadow: 0 10px 30px rgba(16, 24, 40, 0.25); }
  .listing-facts, .service-list { grid-template-columns: 1fr; }
  .analytics-consent { align-items: stretch; flex-direction: column; }
  .analytics-consent > div, .analytics-consent button { width: 100%; }
}

/* --- Toolbar ordinamento risultati --- */
.results-toolbar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sort-field { display: inline-flex; align-items: center; gap: 8px; }
.sort-field span { color: var(--muted); font-size: 13px; font-weight: 700; white-space: nowrap; }
.sort-field select { min-height: 40px; width: auto; min-width: 180px; }

/* --- Separatore di sezione tra gruppi di risultati (stile Booking) --- */
.results-separator { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; margin: 10px 0 2px; color: #475467; }
.results-separator::before, .results-separator::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.results-separator span { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); white-space: nowrap; }

/* --- Card non disponibile: leggermente attenuata --- */
.listing-card-muted { opacity: 0.92; }
.availability-line.availability-unavailable { color: #b42318; font-weight: 700; }
.availability-line.availability-unavailable::before { content: "\2022"; margin-right: 6px; color: #b42318; }

@media (max-width: 640px) {
  .results-toolbar { width: 100%; justify-content: space-between; }
  .sort-field select { min-width: 0; }
}
