:root {
  --bg: #fafbfd;
  --surface: #ffffff;
  --fg: #111827;
  --muted: #4b5563;
  --line: #e2e8f0;
  --primary: #0b4ea2;
  --primary-dark: #083d80;
  --accent: #1c7c9c;
  --secondary: #c2185b;
  --sand: #e8d8b7;
  --gold: #f4b740;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea955;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(11, 33, 64, 0.06);
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--fg);
  background:
    radial-gradient(circle at 8% 6%, rgba(11, 78, 162, 0.08), transparent 28%),
    radial-gradient(circle at 96% 8%, rgba(28, 124, 156, 0.08), transparent 26%),
    var(--bg);
  line-height: 1.58;
}

.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;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.62rem;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  font-weight: 500;
}

p {
  margin: 0 0 0.85rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.66rem;
  text-decoration: none;
  justify-self: start;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(11, 48, 92, 0.2);
}

.brand-text {
  display: grid;
}

.brand-title {
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  direction: ltr;
  unicode-bidi: isolate;
}

.brand-title-main {
  color: var(--fg);
  font-weight: 800;
}

.brand-title-suffix {
  color: var(--primary) !important;
  font-weight: 800;
}

.brand-text small {
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links,
.lang-switch,
.nav-side {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.nav-side-desktop {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: 140ms ease;
}

.menu-btn:hover,
.menu-btn:focus-visible {
  border-color: rgba(11, 78, 162, 0.45);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.14);
  outline: none;
}

.menu-icon {
  width: 20px;
  height: 14px;
  display: grid;
  gap: 3px;
}

.menu-icon span {
  height: 2px;
  border-radius: 999px;
  background: var(--fg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 28, 0.48);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-height: 92vh;
  overflow: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(8, 18, 28, 0.18);
  transform: translateY(-105%);
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateY(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 0.75rem;
}

.mobile-menu-title {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.mobile-menu-close {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transition: 140ms ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  border-color: rgba(11, 78, 162, 0.45);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.14);
  outline: none;
}

.mobile-menu-body {
  padding: 0 1rem 1rem;
  display: grid;
  gap: 0.9rem;
}

.mobile-menu-section {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  padding: 0.85rem;
  display: grid;
  gap: 0.35rem;
}

.mobile-menu-section-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.mobile-menu-section a {
  text-decoration: none;
  padding: 0.52rem 0.6rem;
  border-radius: 12px;
  border: 1px solid transparent;
}

.mobile-menu-section a:hover,
.mobile-menu-section a:focus-visible {
  background: rgba(11, 78, 162, 0.08);
  border-color: rgba(11, 78, 162, 0.2);
  outline: none;
}

.mobile-menu-section .menu-primary {
  width: fit-content;
}

.lang-switch-mobile {
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: stretch;
  justify-content: stretch;
}

.lang-switch-mobile .lang {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.lang-switch-mobile .lang.active {
  border-color: rgba(11, 78, 162, 0.45);
  background: rgba(11, 78, 162, 0.1);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.12);
}

.lang-switch-mobile .lang:hover,
.lang-switch-mobile .lang:focus-visible {
  border-color: rgba(11, 78, 162, 0.45);
  background: rgba(11, 78, 162, 0.08);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.14);
  outline: none;
}

body.menu-open {
  overflow: hidden;
}

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

.nav-side {
  justify-self: end;
  justify-content: flex-end;
}

.lang-switch {
  justify-content: flex-end;
}

.nav-links a,
.lang {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.4rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 500;
  transition: 140ms ease;
}

.nav-links a {
  border: 0;
  background: transparent;
  padding: 0.25rem 0.35rem;
  border-radius: 10px;
}

.lang {
  min-width: 42px;
  text-align: center;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary-dark);
  background: rgba(11, 78, 162, 0.08);
  box-shadow: none;
  outline: none;
}

.lang:hover,
.lang:focus-visible,
.lang.active {
  border-color: rgba(11, 78, 162, 0.45);
  color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.14);
  outline: none;
}

.lang-switch {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 0.22rem;
}

.lang {
  border: 0;
  background: transparent;
  padding: 0.3rem 0.66rem;
  min-width: 42px;
  box-shadow: none;
}

.lang.active {
  background: rgba(11, 78, 162, 0.12);
}

.lang:hover,
.lang:focus-visible {
  background: rgba(11, 78, 162, 0.08);
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.64rem 0.96rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 140ms ease;
  cursor: pointer;
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.2);
}

.btn-header {
  background: rgba(11, 78, 162, 0.1);
  border-color: rgba(11, 78, 162, 0.24);
  color: var(--primary-dark);
}

.section {
  padding-block: clamp(1.25rem, 3.8vw, 2.6rem);
}

.hero {
  padding-top: clamp(1.15rem, 2.6vw, 2.1rem);
}

/* The homepage hero already uses `.section`; keep it tighter on desktop. */
.hero.section {
  padding-block: clamp(1.05rem, 2.8vw, 2.1rem);
}

.hero-2026 {
  overflow: clip;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.hero-copy {
  padding-right: clamp(0rem, 1vw, 0.6rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.hero-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.38rem 0.6rem;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.hero-badge strong {
  font-weight: 600;
  color: var(--fg);
}

.hero-badge span {
  font-size: 0.78rem;
  color: var(--muted);
}

.trust-row {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 183, 64, 0.22);
  flex: 0 0 auto;
}

.hero-media {
  position: relative;
}

.hero-feature {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  box-shadow: 0 18px 46px rgba(11, 33, 64, 0.12);
  transform: translateZ(0);
  text-decoration: none;
}

.hero-feature img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  max-height: 480px;
  transform: scale(1.01);
  transition: transform 280ms ease;
}

.hero-feature-glow {
  position: absolute;
  inset: auto -18% -38% -18%;
  height: 60%;
  background: radial-gradient(circle at 30% 20%, rgba(11, 78, 162, 0.42), rgba(28, 124, 156, 0.16), transparent 62%);
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.9;
}

.hero-feature-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.3rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(14px);
}

.hero-feature-price {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  font-size: 1.02rem;
}

.hero-feature-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-feature-link {
  font-size: 0.88rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.hero-feature:hover img {
  transform: scale(1.05);
}

.hero-feature:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.16), 0 18px 46px rgba(11, 33, 64, 0.12);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  border-radius: 22px;
}

.hero-media-item {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
  transform: translateZ(0);
}

.hero-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/11;
  transition: transform 240ms ease;
}

.hero-media-item:hover img {
  transform: scale(1.04);
}

.hero-mosaic .hero-media-item:nth-child(1) {
  grid-row: 1 / 3;
}

.hero-media-note {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2.5vw, 1.85rem);
}

.card:hover {
  box-shadow: 0 14px 34px rgba(15, 41, 63, 0.08);
}

.kicker {
  display: inline-flex;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.hero-copy h1 {
  max-width: 22ch;
}

.hero-copy .lead {
  max-width: 58ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem;
  margin-top: 1.15rem;
}

.hero-browse {
  margin-top: 0.65rem;
}

.hero-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: rgba(11, 78, 162, 0.95);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  border-color: rgba(11, 78, 162, 0.7);
  box-shadow: 0 12px 26px rgba(11, 78, 162, 0.16);
}

.btn-secondary {
  color: #fff;
  background: var(--accent);
  border-color: rgba(28, 124, 156, 0.65);
  box-shadow: 0 12px 24px rgba(28, 124, 156, 0.14);
}

.btn-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  border-color: rgba(30, 169, 85, 0.72);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.14);
}

.btn-outline {
  border-color: rgba(17, 24, 39, 0.25);
  color: #1f2937;
  background: rgba(255, 255, 255, 0.75);
}

.btn-ghost {
  border-color: var(--line);
  background: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
  box-shadow: 0 12px 24px rgba(11, 78, 162, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  filter: brightness(0.95);
  box-shadow: 0 12px 22px rgba(28, 124, 156, 0.2);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--whatsapp-dark);
  box-shadow: 0 12px 22px rgba(37, 211, 102, 0.2);
}

.btn.block {
  margin-top: 0.8rem;
  width: 100%;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.metrics {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.metrics div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.68rem;
  background: rgba(247, 251, 253, 0.95);
}

.metrics strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 600;
}

.metrics span {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.chip-row,
.feature-chips {
  display: flex;
  gap: 0.44rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.chip {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  background: rgba(243, 248, 251, 0.85);
  font-size: 0.86rem;
  font-weight: 500;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 600;
}

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

.filters-card {
  margin-bottom: 0.2rem;
}

.filters-form {
  display: grid;
  gap: 0.6rem;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.58rem;
}

.filters-form label {
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.filters-form input,
.filters-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.68rem;
  font: inherit;
  color: var(--fg);
  background: #fff;
}

.filters-form input:focus,
.filters-form select:focus {
  outline: none;
  border-color: rgba(11, 78, 162, 0.55);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.14);
}

.filter-status {
  margin-top: 0.62rem;
}

.listing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.type-card-media {
  display: block;
  margin: -0.2rem -0.2rem 0.6rem;
  overflow: hidden;
  border-radius: 12px;
}

.type-card-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 220ms ease;
}

.type-card-media:hover img {
  transform: scale(1.04);
}

.listing-image-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.listing-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.listing-image-overlay {
  position: absolute;
  inset: auto 0.75rem 0.75rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.6rem;
  pointer-events: none;
}

.listing-price-pill,
.listing-loc-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 18, 28, 0.62);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
}

.listing-price-pill {
  background: linear-gradient(135deg, rgba(11, 78, 162, 0.96), rgba(28, 124, 156, 0.92));
  border-color: rgba(255, 255, 255, 0.18);
}

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

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.1);
  border-color: rgba(11, 78, 162, 0.24);
}

.listing-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.18);
}

.listing-body {
  padding: 0.92rem;
}

.listing-head {
  display: grid;
  gap: 0.16rem;
  margin-bottom: 0.35rem;
}

.listing-subtitle {
  margin: 0;
  color: rgba(75, 85, 99, 0.92);
  font-size: 0.86rem;
}

.listing-summary {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.listing-updated {
  margin: 0.65rem 0 0;
  color: rgba(75, 85, 99, 0.85);
  font-size: 0.8rem;
}

.meta-grid {
  margin: 0.72rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.meta-grid dt {
  margin-bottom: 0.1rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.meta-grid dd {
  margin: 0;
  font-weight: 500;
}

.caption {
  color: var(--muted);
  font-size: 0.8rem;
}

.map {
  min-height: 430px;
  margin-top: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.map-marker {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  gap: 3px;
  place-items: center;
}

.map-marker-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.73rem;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(20, 30, 43, 0.2);
}

.map-marker-meta {
  font-size: 0.66rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  line-height: 1.1;
  box-shadow: 0 8px 20px rgba(20, 30, 43, 0.18);
}

.map-marker-current .map-marker-price {
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.95), rgba(11, 78, 162, 0.95));
}

.map-marker-district {
  font-size: 0.64rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.85);
  color: #fff;
  line-height: 1.1;
  max-width: 116px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

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

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

.listing-media {
  padding: 0.9rem;
}

.listing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 0.95rem;
  align-items: start;
}

.listing-main {
  display: grid;
  gap: 0.95rem;
}

.listing-article {
  display: flow-root;
}

.listing-aside {
  position: sticky;
  top: 96px;
}

.listing-article h1 {
  margin-top: 0.25rem;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
}

.listing-title .lead {
  margin-bottom: 0;
}

.listing-meta-chips {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.chip-primary {
  background: linear-gradient(135deg, rgba(11, 78, 162, 0.12), rgba(28, 124, 156, 0.1));
  border-color: rgba(11, 78, 162, 0.22);
  color: rgba(17, 24, 39, 0.94);
}

.chip-muted {
  background: rgba(243, 248, 251, 0.65);
  color: rgba(75, 85, 99, 0.95);
}

.listing-section {
  margin-top: 1.25rem;
  padding-top: 0.1rem;
}

.listing-section:first-of-type {
  margin-top: 0.9rem;
}

.listing-section h2 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.listing-section .chip-row {
  margin-top: 0.55rem;
  margin-bottom: 0.15rem;
}

.taxo-grid {
  list-style: none;
  padding: 0;
  margin: 0.45rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 1.2rem;
}

.taxo-link,
.taxo-text {
  display: block;
  position: relative;
  padding: 0.32rem 0.2rem 0.32rem 1.1rem;
  border-radius: 12px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.taxo-link {
  text-decoration: none;
  color: rgba(17, 24, 39, 0.94);
}

.taxo-link::before,
.taxo-text::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.9rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(28, 124, 156, 0.92);
}

.taxo-link:hover,
.taxo-link:focus-visible {
  outline: none;
  background: rgba(11, 78, 162, 0.06);
  color: var(--primary-dark);
}

.taxo-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.14);
}

.taxo-text {
  color: rgba(31, 41, 55, 0.92);
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(226, 232, 240, 0.95);
}

.listing-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.9rem;
}

.listing-split {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.icon-list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(31, 41, 55, 0.92);
}

.icon-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(28, 124, 156, 0.9);
}

.listing-callout {
  background: rgba(250, 251, 253, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 0.9rem;
  color: rgba(31, 41, 55, 0.92);
}

.readmore summary {
  margin-top: 0.4rem;
  cursor: pointer;
  color: var(--primary-dark);
  font-weight: 600;
}

.readmore-body {
  margin-top: 0.6rem;
}

.listing-contact-price {
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.listing-contact-meta {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.listing-aside-extra {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
}

.listing-aside-extra a {
  font-weight: 600;
}

.listing-share {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.listing-share .btn-row {
  margin-top: 0.45rem;
}

.availability-card {
  margin-top: 0.9rem;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.availability-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.dot-open {
  background: rgba(5, 150, 105, 0.95);
}

.dot-booked {
  background: rgba(220, 38, 38, 0.95);
}

.dot-past {
  background: rgba(156, 163, 175, 0.95);
}

.availability-months {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.availability-month h4 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.28rem;
}

.cal-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 10px;
  font-size: 0.78rem;
}

.cal-day-head {
  min-height: 20px;
  color: rgba(107, 114, 128, 0.95);
  font-weight: 600;
}

.cal-day-empty {
  background: transparent;
}

.cal-day-open {
  background: rgba(16, 185, 129, 0.12);
  color: rgba(6, 95, 70, 1);
}

.cal-day-booked {
  background: rgba(239, 68, 68, 0.14);
  color: rgba(153, 27, 27, 1);
}

.cal-day-past {
  background: rgba(243, 244, 246, 1);
  color: rgba(156, 163, 175, 1);
}

.listing-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  height: clamp(280px, 48vh, 520px);
}

.listing-gallery-tile {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(226, 232, 240, 0.9);
  height: 100%;
}

.listing-gallery-tile picture,
.listing-gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
}

.listing-gallery-tile img {
  object-fit: cover;
}

.listing-gallery-main {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.listing-gallery-all {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 24, 39, 0.22);
  backdrop-filter: blur(12px);
}

.gallery-stage {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.gallery-stage img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-thumbs {
  margin-top: 0.64rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.5rem;
}

.gallery-thumb {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-thumb.active {
  border-color: rgba(11, 78, 162, 0.66);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.16);
}

.listing-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.listing-detail ul {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(10, 22, 34, 0.86);
  backdrop-filter: blur(4px);
  padding: 1.1rem;
}

.gallery-lightbox-image {
  width: min(92vw, 1320px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
}

.gallery-lightbox-shell {
  width: min(92vw, 1320px);
  display: grid;
  gap: 0.65rem;
}

.gallery-lightbox-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
}

.gallery-lightbox-meta {
  display: grid;
  gap: 0.12rem;
  font-size: 0.95rem;
}

.gallery-lightbox-meta small {
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.82rem;
}

.gallery-lightbox-controls {
  display: flex;
  gap: 0.45rem;
}

.gallery-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 18, 28, 0.8);
  color: #fff;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-nav:hover {
  background: rgba(8, 18, 28, 0.92);
}

.gallery-lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 18, 28, 0.8);
  color: #fff;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-close:hover {
  background: rgba(8, 18, 28, 0.92);
}

@media (max-width: 860px) {
  .listing-shell {
    grid-template-columns: 1fr;
  }

  .listing-aside {
    position: static;
  }

  .availability-months {
    grid-template-columns: 1fr;
  }

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

  .listing-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .listing-gallery-main {
    grid-row: auto;
  }

  .taxo-grid {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .gallery-lightbox-image {
    max-height: 74vh;
  }
}

.today-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.74rem;
}

.today-card {
  padding: 0.86rem;
}

.today-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}


.form-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}

.form-note {
  color: #158760;
  font-weight: 600;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.lead-form label {
  display: grid;
  gap: 0.2rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.lead-form label.full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea,
.lead-form button {
  font: inherit;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.6rem 0.72rem;
  background: #fff;
  color: var(--fg);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(11, 78, 162, 0.55);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.14);
}

.sticky-fab {
  position: fixed;
  right: 0.72rem;
  bottom: 0.7rem;
  display: flex;
  gap: 0.4rem;
  z-index: 42;
}

.fab {
  text-decoration: none;
  color: #fff;
  border-radius: 999px;
  padding: 0.54rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 8px 22px rgba(17, 35, 50, 0.25);
}

.fab-whatsapp {
  background: var(--whatsapp);
}

.fab-telegram {
  background: linear-gradient(135deg, #2ea5f0, #1575be);
}

.fab-phone {
  background: linear-gradient(135deg, #1d4b76, #14354f);
}

.site-footer {
  margin-top: 1.3rem;
  border-top: 1px solid rgba(11, 78, 162, 0.14);
  background:
    radial-gradient(circle at 8% -8%, rgba(11, 78, 162, 0.1), transparent 44%),
    radial-gradient(circle at 95% 8%, rgba(20, 105, 152, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 255, 0.98));
}

.footer-shell {
  padding-top: 1.35rem;
}

.footer-top-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(11, 78, 162, 0.2);
  border-radius: 26px;
  background: linear-gradient(124deg, rgba(9, 59, 128, 0.13), rgba(46, 138, 167, 0.12) 60%, rgba(255, 255, 255, 0.45));
  padding: clamp(1.05rem, 2.2vw, 1.45rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1rem 1.1rem;
  align-items: center;
}

.footer-top-card::before,
.footer-top-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.footer-top-card::before {
  width: 260px;
  height: 260px;
  right: -110px;
  top: -160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.footer-top-card::after {
  width: 190px;
  height: 190px;
  left: -90px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(11, 78, 162, 0.2), rgba(11, 78, 162, 0));
}

.footer-top-copy {
  position: relative;
  z-index: 1;
}

.footer-top-copy h2 {
  margin: 0.1rem 0 0.35rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-top-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.footer-top-badges {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(11, 78, 162, 0.2);
  background: rgba(255, 255, 255, 0.66);
  padding: 0.24rem 0.62rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(6, 37, 78, 0.9);
}

.footer-top-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.footer-visual {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(11, 78, 162, 0.2);
  background: rgba(255, 255, 255, 0.66);
  padding: 0.68rem;
  min-height: 88px;
}

.footer-visual-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.footer-visual-orb.orb-a {
  width: 78px;
  height: 78px;
  right: -26px;
  top: -26px;
  background: radial-gradient(circle at 30% 30%, rgba(11, 78, 162, 0.24), rgba(11, 78, 162, 0));
}

.footer-visual-orb.orb-b {
  width: 92px;
  height: 92px;
  left: -30px;
  bottom: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(41, 138, 167, 0.28), rgba(41, 138, 167, 0));
}

.footer-visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.38rem;
  z-index: 1;
}

.footer-visual-grid span {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 78, 162, 0.52), rgba(41, 138, 167, 0.28));
  height: 0.46rem;
}

.footer-visual-grid span:nth-child(2n) {
  background: linear-gradient(90deg, rgba(41, 138, 167, 0.45), rgba(11, 78, 162, 0.2));
}

.footer-top-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.footer-top-actions .btn {
  justify-content: center;
}

.footer-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 0.52rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 78, 162, 0.15);
  border-radius: 18px;
  padding: 0.92rem;
  min-height: 100%;
}

.brand-footer .brand-logo {
  box-shadow: 0 10px 24px rgba(15, 41, 63, 0.12);
}

.footer-note {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.footer-contact-lines {
  display: grid;
  gap: 0.24rem;
}

.footer-contact-lines p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-col {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 78, 162, 0.12);
  border-radius: 18px;
  padding: 0.88rem;
  min-height: 100%;
}

.footer-col h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.clean-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.clean-list a::before {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: rgba(11, 78, 162, 0.45);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 0.88rem;
  border-top: 1px solid rgba(11, 78, 162, 0.14);
  padding: 0.8rem 0 1.18rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-bottom-left {
  display: grid;
  gap: 0.2rem;
}

.footer-bottom-right {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom strong {
  color: var(--fg);
  font-weight: 600;
}

.consent-banner {
  position: fixed;
  left: 0.88rem;
  right: 0.88rem;
  bottom: 0.86rem;
  z-index: 140;
}

.consent-banner-inner {
  max-width: min(980px, calc(100vw - 1.76rem));
  margin-inline: auto;
  border: 1px solid rgba(11, 78, 162, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(12, 33, 58, 0.2);
  padding: 0.82rem 0.95rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.72rem 0.95rem;
  align-items: center;
}

.consent-copy strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.consent-copy p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.consent-copy .caption {
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

body.has-consent-banner .sticky-fab {
  bottom: 6.4rem;
}

.locale-ar body,
body.locale-ar {
  font-family: "Tajawal", "Cairo", "Plus Jakarta Sans", "Manrope", sans-serif;
}

body.locale-ar .nav,
body.locale-ar .cta-row,
body.locale-ar .section-head,
body.locale-ar .footer-bottom,
body.locale-ar .btn-row {
  direction: rtl;
}

@media (max-width: 1120px) {
  .hero-shell,
  .form-card {
    grid-template-columns: 1fr;
  }

  .footer-top-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-actions {
    max-width: 360px;
  }

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

  .filters-grid,
  .today-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav {
    display: flex;
    min-height: 72px;
    padding: 0.58rem 0;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-side {
    width: auto;
    justify-content: flex-end;
  }

  .nav-side-desktop {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .brand-text small {
    display: none;
  }
}

@media (max-width: 860px) {
  .metrics,
  .grid-3,
  .lead-form,
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top-actions {
    max-width: 100%;
  }

  .footer-bottom-right {
    justify-content: flex-start;
  }

  .consent-banner {
    left: 0.58rem;
    right: 0.58rem;
    bottom: 0.52rem;
  }

  .consent-banner-inner {
    grid-template-columns: 1fr;
    padding: 0.72rem 0.8rem;
  }

  .consent-actions {
    justify-content: flex-start;
  }

  body.has-consent-banner .sticky-fab {
    bottom: 10.1rem;
  }
}

/* Blog + FAQ */
.prose {
  max-width: 78ch;
}

.prose h2 {
  margin-top: 1.25rem;
}

.prose h3 {
  margin-top: 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
  margin: 0 0 0.85rem;
}

.prose li {
  margin: 0.2rem 0;
}

.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  background: rgba(11, 78, 162, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.95);
  padding: 0.1rem 0.3rem;
  border-radius: 10px;
}

.prose a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.blog-card {
  padding: 1rem;
}

.blog-card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.75rem;
  height: 100%;
  text-decoration: none;
}

.blog-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.blog-card-body h3 {
  margin: 0 0 0.35rem;
}

.blog-card-meta {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.blog-card-excerpt {
  margin: 0 0 0.55rem;
  color: var(--muted);
}

.blog-article {
  display: grid;
  gap: 0.9rem;
}

.blog-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.blog-meta {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.55rem 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

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

.faq-item[open] {
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-item .prose {
  margin-top: 0.6rem;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* 404 */
.notfound-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding-block: clamp(1.5rem, 4.5vw, 3rem);
  background:
    linear-gradient(135deg, rgba(9, 28, 54, 0.72), rgba(9, 28, 54, 0.15)),
    var(--nf-bg) center / cover no-repeat;
}

.notfound-card {
  max-width: 860px;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.7);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  padding: clamp(1.15rem, 3.4vw, 2.2rem);
}

.notfound-card h1 {
  margin-top: 0.25rem;
}

body.locale-ar .notfound-card {
  text-align: right;
}
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

body.site-rentals {
  --bg: #ffffff;
  --surface: #ffffff;
  --fg: #0c1620;
  --muted: #5b6775;
  --line: #d7dce3;
  --primary: #2b6662;
  --primary-dark: #235854;
  --accent: #3c7f7a;
  --radius: 16px;
  --shadow: none;
  background:
    radial-gradient(circle at 92% -18%, rgba(60, 127, 122, 0.08), transparent 40%),
    radial-gradient(circle at -10% 12%, rgba(43, 102, 98, 0.05), transparent 35%),
    #fff;
  color: var(--fg);
  font-family: "Manrope", "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  overflow-x: clip;
}

body.site-rentals .site-main,
body.site-rentals .section,
body.site-rentals .container,
body.site-rentals .listing-shell > *,
body.site-rentals .listing-main,
body.site-rentals .listing-aside,
body.site-rentals .request-calendar-card,
body.site-rentals .request-cal-month,
body.site-rentals .request-cal-grid {
  min-width: 0;
}

body.site-rentals .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(7px);
}

body.site-rentals .nav {
  min-height: 86px;
}

body.site-rentals .brand-logo {
  display: none !important;
}

body.site-rentals .brand {
  gap: 0.2rem;
}

body.site-rentals .brand-title {
  font-size: clamp(1.36rem, 1.7vw, 1.62rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

body.site-rentals .brand-title-main {
  color: #0c1620;
}

body.site-rentals .brand-title-suffix {
  color: #2b6662 !important;
}

body.site-rentals .brand-text small {
  display: none;
}

body.site-rentals .kicker {
  color: #2b6662;
  font-weight: 700;
}

body.site-rentals .nav-links a {
  border-radius: 10px;
  padding: 0.36rem 0.5rem;
  color: #0c1620;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

body.site-rentals .nav-links a:hover,
body.site-rentals .nav-links a:focus-visible {
  color: #2b6662;
  background: #f6f7f9;
}

body.site-rentals .lang-switch {
  border-color: var(--line);
  background: #fff;
}

body.site-rentals .lang {
  font-weight: 700;
}

body.site-rentals .lang.active {
  background: rgba(43, 102, 98, 0.12);
  color: #235854;
}

body.site-rentals .lang:hover,
body.site-rentals .lang:focus-visible {
  background: rgba(43, 102, 98, 0.08);
}

body.site-rentals .menu-btn:hover,
body.site-rentals .menu-btn:focus-visible,
body.site-rentals .mobile-menu-close:hover,
body.site-rentals .mobile-menu-close:focus-visible,
body.site-rentals .lang-switch-mobile .lang.active,
body.site-rentals .lang-switch-mobile .lang:hover,
body.site-rentals .lang-switch-mobile .lang:focus-visible {
  border-color: rgba(43, 102, 98, 0.42);
  box-shadow: 0 0 0 3px rgba(43, 102, 98, 0.12);
}

body.site-rentals .mobile-menu-panel {
  background: rgba(255, 255, 255, 0.98);
}

body.site-rentals .mobile-menu-section a:hover,
body.site-rentals .mobile-menu-section a:focus-visible {
  background: #f6f7f9;
  border-color: rgba(43, 102, 98, 0.2);
}

body.site-rentals .section {
  padding-block: clamp(1.35rem, 3vw, 2.45rem);
}

body.site-rentals .hero-feature-glow {
  display: none;
}

body.site-rentals .hero-feature,
body.site-rentals .hero-media-item,
body.site-rentals .hero-feature-card,
body.site-rentals .hero-badge {
  border-color: var(--line);
  box-shadow: none;
}

body.site-rentals .hero-feature-card {
  background: rgba(255, 255, 255, 0.96);
}

body.site-rentals .trust-dot {
  background: #3c7f7a;
  box-shadow: 0 0 0 3px rgba(60, 127, 122, 0.2);
}

body.site-rentals .hero-shell {
  gap: clamp(1rem, 2.2vw, 1.8rem);
}

body.site-rentals .hero-copy h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.72rem);
  letter-spacing: -0.04em;
  max-width: 15ch;
}

body.site-rentals .hero-copy .lead {
  max-width: 48ch;
  font-size: clamp(1.04rem, 1.6vw, 1.3rem);
}

body.site-rentals .hero-rentals-trust {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

body.site-rentals .hero-rentals-trust .trust-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.45rem 0.55rem;
  font-size: 0.9rem;
  color: #415161;
}

body.site-rentals .hero-chip-label {
  margin-top: 0.8rem;
  color: #586575;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body.site-rentals .rentals-term-split {
  margin-top: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.84rem;
  background: #f6f7f9;
}

body.site-rentals .rentals-term-head h3 {
  margin: 0;
  font-size: 1.02rem;
}

body.site-rentals .rentals-term-head .caption {
  margin-top: 0.18rem;
}

body.site-rentals .rentals-term-grid {
  margin-top: 0.64rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.64rem;
}

body.site-rentals .rentals-term-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem;
  background: #fff;
}

body.site-rentals .rentals-term-card.is-active {
  border-color: rgba(43, 102, 98, 0.4);
  background: rgba(43, 102, 98, 0.08);
}

body.site-rentals .rentals-term-card h4 {
  margin: 0;
  font-size: 1.02rem;
}

body.site-rentals .rentals-term-card p {
  margin: 0.48rem 0 0;
  font-size: 0.9rem;
  color: #4f5d6c;
}

body.site-rentals .card {
  border-radius: 16px;
  border-color: var(--line);
  box-shadow: none;
}

body.site-rentals .card:hover {
  box-shadow: none;
}

body.site-rentals .btn {
  border-radius: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.site-rentals .btn:hover,
body.site-rentals .btn:focus-visible {
  transform: translateY(-2px);
}

body.site-rentals .btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(43, 102, 98, 0.18);
}

body.site-rentals .btn-primary {
  color: #fff;
  background: #2b6662;
  border-color: #2b6662;
  box-shadow: none;
}

body.site-rentals .btn-primary:hover,
body.site-rentals .btn-primary:focus-visible {
  background: #235854;
  border-color: #235854;
}

body.site-rentals .btn-secondary {
  color: #fff;
  background: #3c7f7a;
  border-color: #3c7f7a;
  box-shadow: none;
}

body.site-rentals .btn-secondary:hover,
body.site-rentals .btn-secondary:focus-visible {
  background: #326b67;
  border-color: #326b67;
  filter: none;
  box-shadow: none;
}

body.site-rentals .btn-header,
body.site-rentals .btn-outline {
  border-color: rgba(43, 102, 98, 0.3);
  color: #235854;
  background: #fff;
}

body.site-rentals .btn-ghost {
  border-color: var(--line);
  color: #0c1620;
  background: #fff;
}

body.site-rentals .text-link {
  color: #2b6662;
  text-decoration: none;
}

body.site-rentals .text-link:hover,
body.site-rentals .text-link:focus-visible {
  color: #235854;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.site-rentals .filters-card {
  background: #f6f7f9;
}

body.site-rentals .filters-form input,
body.site-rentals .filters-form select,
body.site-rentals .lead-form input,
body.site-rentals .lead-form textarea {
  border-color: var(--line);
  border-radius: 12px;
}

body.site-rentals .filters-form input:focus,
body.site-rentals .filters-form select:focus,
body.site-rentals .lead-form input:focus,
body.site-rentals .lead-form textarea:focus {
  border-color: rgba(43, 102, 98, 0.55);
  box-shadow: 0 0 0 3px rgba(43, 102, 98, 0.12);
}

body.site-rentals .listing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: none;
}

body.site-rentals .listing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 102, 98, 0.4);
  box-shadow: 0 14px 28px rgba(12, 22, 32, 0.08);
}

body.site-rentals .listing-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(43, 102, 98, 0.16);
}

body.site-rentals .listing-image-overlay {
  inset: auto 0.72rem 0.72rem 0.72rem;
}

body.site-rentals .listing-price-pill {
  background: #2b6662;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

body.site-rentals .listing-loc-pill {
  background: rgba(12, 22, 32, 0.68);
}

body.site-rentals .listing-shell {
  grid-template-columns: minmax(0, 1fr) minmax(304px, 360px);
  gap: 1rem;
}

body.site-rentals .listing-gallery-tile,
body.site-rentals .gallery-stage img,
body.site-rentals .gallery-thumb {
  border-color: var(--line);
  border-radius: 16px;
}

body.site-rentals .listing-gallery-all {
  border-color: var(--line);
}

body.site-rentals .chip {
  background: #f6f7f9;
  border-color: var(--line);
}

body.site-rentals .chip-primary {
  background: rgba(43, 102, 98, 0.12);
  border-color: rgba(43, 102, 98, 0.24);
}

body.site-rentals .taxo-link::before,
body.site-rentals .taxo-text::before,
body.site-rentals .icon-list li::before {
  background: #3c7f7a;
}

body.site-rentals .taxo-link:hover,
body.site-rentals .taxo-link:focus-visible {
  background: #f6f7f9;
  color: #235854;
}

body.site-rentals .listing-contact-price {
  font-size: 2.05rem;
  letter-spacing: -0.03em;
}

body.site-rentals .listing-share {
  border-top-color: var(--line);
}

body.site-rentals .listing-aside-extra {
  gap: 0.6rem;
}

body.site-rentals .map,
body.site-rentals .map-card {
  border-color: var(--line);
}

body.site-rentals .map-marker-price {
  background: #2b6662;
  box-shadow: none;
}

body.site-rentals .map-marker-current .map-marker-price {
  background: #3c7f7a;
}

body.site-rentals .site-footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

body.site-rentals .footer-top-card {
  border-color: var(--line);
  background: #f6f7f9;
}

body.site-rentals .footer-top-card::after {
  background: radial-gradient(circle, rgba(43, 102, 98, 0.2), rgba(43, 102, 98, 0));
}

body.site-rentals .footer-badge {
  border-color: var(--line);
  background: #fff;
  color: #235854;
}

body.site-rentals .footer-visual {
  border-color: var(--line);
  background: #fff;
}

body.site-rentals .footer-visual-grid span {
  background: linear-gradient(90deg, rgba(43, 102, 98, 0.56), rgba(60, 127, 122, 0.34));
}

body.site-rentals .footer-brand-block,
body.site-rentals .footer-col {
  border-color: var(--line);
  background: #fff;
}

body.site-rentals .clean-list a::before {
  background: rgba(43, 102, 98, 0.5);
}

body.site-rentals .footer-bottom {
  border-top-color: var(--line);
}

body.site-rentals .consent-banner-inner {
  border-color: rgba(43, 102, 98, 0.26);
  box-shadow: 0 16px 28px rgba(12, 22, 32, 0.16);
}

body.site-rentals .fab-phone {
  background: #2b6662;
}

body.site-rentals .listing-main {
  gap: 1.2rem;
}

body.site-rentals .listing-media {
  border: 0;
  padding: 0;
  background: transparent;
}

body.site-rentals .listing-gallery {
  gap: 0.75rem;
  height: clamp(300px, 48vh, 520px);
}

body.site-rentals .listing-gallery-tile {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 32px rgba(12, 22, 32, 0.11);
}

body.site-rentals .listing-gallery-tile img {
  transition: transform 260ms ease;
}

body.site-rentals .listing-gallery-tile:hover img,
body.site-rentals .listing-gallery-tile:focus-visible img {
  transform: scale(1.035);
}

body.site-rentals .listing-gallery-all {
  border-radius: 12px;
  font-weight: 700;
}

body.site-rentals .listing-article {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(1.1rem, 2.3vw, 1.8rem);
}

body.site-rentals .listing-kicker-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

body.site-rentals .listing-term-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(43, 102, 98, 0.32);
  background: rgba(43, 102, 98, 0.1);
  color: #235854;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
}

body.site-rentals .listing-title h1 {
  font-size: clamp(1.72rem, 3vw, 2.48rem);
  line-height: 1.08;
  max-width: 20ch;
  margin-top: 0.2rem;
}

body.site-rentals .listing-title .lead {
  font-size: 1rem;
  color: #4a5968;
  max-width: 62ch;
}

body.site-rentals .listing-meta-chips {
  margin-top: 0.95rem;
}

body.site-rentals .listing-trust-strip {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

body.site-rentals .listing-trust-strip span {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f6f7f9;
  color: #2a3948;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.46rem 0.6rem;
  text-align: center;
}

body.site-rentals .listing-section {
  margin-top: 1rem;
}

body.site-rentals .listing-section-surface {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.92rem 1rem;
}

body.site-rentals .listing-section-surface h2 {
  margin-bottom: 0.62rem;
}

body.site-rentals .taxo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1rem;
}

body.site-rentals .taxo-link,
body.site-rentals .taxo-text {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.44rem 0.5rem 0.44rem 1.2rem;
  min-height: 42px;
  display: flex;
  align-items: center;
  background: #fff;
}

body.site-rentals .taxo-link::before,
body.site-rentals .taxo-text::before {
  left: 0.44rem;
  top: 50%;
  transform: translateY(-50%);
}

body.site-rentals .taxo-link:hover,
body.site-rentals .taxo-link:focus-visible {
  border-color: rgba(43, 102, 98, 0.2);
  box-shadow: 0 0 0 3px rgba(43, 102, 98, 0.08);
}

body.site-rentals .taxo-text {
  border-color: var(--line);
  background: #f8fafb;
}

body.site-rentals .listing-split {
  gap: 0.8rem;
}

body.site-rentals .icon-list {
  gap: 0.5rem;
}

body.site-rentals .icon-list li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.48rem 0.64rem 0.48rem 1.3rem;
}

body.site-rentals .icon-list li::before {
  left: 0.5rem;
}

body.site-rentals .listing-contact {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 24px rgba(12, 22, 32, 0.08);
}

body.site-rentals .listing-contact-price {
  font-size: clamp(1.9rem, 3.2vw, 2.45rem);
  line-height: 1;
  margin-bottom: 0.14rem;
}

body.site-rentals .listing-contact-subprice {
  margin: 0;
  color: #2b6662;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body.site-rentals .listing-contact-meta {
  margin-top: 0.45rem;
  font-size: 0.88rem;
}

body.site-rentals .listing-pricing-note {
  margin: 0.58rem 0 0;
  color: #4f5d6c;
  font-size: 0.86rem;
}

body.site-rentals .listing-share {
  margin-top: 1rem;
  padding-top: 0.95rem;
}

body.site-rentals .listing-share .btn-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

body.site-rentals .listing-share .btn {
  justify-content: center;
  text-align: center;
}

body.site-rentals .request-calendar-card {
  border-radius: 18px;
}

body.site-rentals .request-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin: 0.55rem 0 0.2rem;
  color: #5b6775;
  font-size: 0.88rem;
}

body.site-rentals .request-cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body.site-rentals .request-cal-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

body.site-rentals .request-cal-legend .dot.open {
  background: #2b6662;
}

body.site-rentals .request-cal-legend .dot.booked {
  background: #d23a3a;
}

body.site-rentals .request-cal-legend .dot.past {
  background: #9aa6b5;
}

body.site-rentals .request-cal-status {
  margin: 0.38rem 0 0.6rem;
  font-size: 0.94rem;
  color: #2f3f4f;
  font-weight: 600;
}

body.site-rentals .request-cal-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

body.site-rentals .request-cal-month {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem;
  background: #fff;
}

body.site-rentals .request-cal-month h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

body.site-rentals .request-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
}

body.site-rentals .rq-day {
  min-height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 650;
}

body.site-rentals .rq-day-head {
  min-height: 22px;
  color: #7b8593;
  font-size: 0.82rem;
  font-weight: 700;
}

body.site-rentals .rq-day-empty {
  background: transparent;
}

body.site-rentals .rq-day-past,
body.site-rentals .rq-day-booked {
  background: #f2f4f7;
  color: #a0aab7;
}

body.site-rentals .rq-day-booked {
  text-decoration: line-through;
}

body.site-rentals .rq-day-open {
  border: 1px solid var(--line);
  background: #fff;
  color: #233242;
  cursor: pointer;
}

body.site-rentals .rq-day-open:hover,
body.site-rentals .rq-day-open:focus-visible {
  border-color: rgba(43, 102, 98, 0.48);
  box-shadow: 0 0 0 2px rgba(43, 102, 98, 0.14);
  outline: none;
}

body.site-rentals .rq-day-open.is-start,
body.site-rentals .rq-day-open.is-end {
  background: #2b6662;
  border-color: #2b6662;
  color: #fff;
}

body.site-rentals .rq-day-open.is-in-range {
  background: rgba(43, 102, 98, 0.14);
  border-color: rgba(43, 102, 98, 0.26);
}

body.site-rentals .request-cal-cta {
  margin-top: 0.8rem;
}

body.site-rentals .request-calendar-form {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

body.site-rentals .request-calendar-dates {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.56rem;
}

body.site-rentals .request-calendar-form label {
  display: grid;
  gap: 0.18rem;
  font-size: 0.86rem;
  color: #536070;
  font-weight: 700;
}

body.site-rentals .request-calendar-form label.full,
body.site-rentals .request-calendar-form .block,
body.site-rentals .request-calendar-form .caption,
body.site-rentals .request-calendar-form .form-note {
  grid-column: 1 / -1;
}

body.site-rentals .request-calendar-form input,
body.site-rentals .request-calendar-form select,
body.site-rentals .request-calendar-form textarea {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.62rem 0.68rem;
  font: inherit;
  color: #0c1620;
  background: #fff;
}

body.site-rentals .request-calendar-form textarea {
  resize: vertical;
}

body.site-rentals .request-calendar-form input:focus,
body.site-rentals .request-calendar-form select:focus,
body.site-rentals .request-calendar-form textarea:focus {
  outline: none;
  border-color: rgba(43, 102, 98, 0.52);
  box-shadow: 0 0 0 3px rgba(43, 102, 98, 0.1);
}

body.site-rentals .listing-shell {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
  gap: clamp(1rem, 1.8vw, 1.45rem);
}

body.site-rentals .listing-aside {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  position: sticky;
  top: 96px;
}

body.site-rentals .listing-contact {
  padding: clamp(1rem, 1.7vw, 1.3rem);
}

body.site-rentals .listing-contact .cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
  margin-top: 0.8rem;
}

body.site-rentals .listing-contact .cta-row .btn {
  justify-content: center;
  width: 100%;
}

body.site-rentals .listing-contact .btn.block {
  margin-top: 0.65rem;
}

body.site-rentals .listing-aside .request-calendar-card {
  margin-top: 0;
  padding: 0.95rem 1rem;
}

body.site-rentals .listing-aside .request-cal-months {
  grid-template-columns: 1fr;
  gap: 0.68rem;
}

body.site-rentals .listing-aside .request-cal-grid {
  gap: 0.24rem;
}

body.site-rentals .listing-aside .rq-day {
  min-height: 34px;
  border-radius: 10px;
  font-size: 0.84rem;
}

body.site-rentals .listing-aside .request-calendar-form,
body.site-rentals .listing-aside .request-calendar-dates {
  grid-template-columns: 1fr;
}

body.site-rentals .listing-aside .listing-share .btn-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.site-rentals .listing-aside .listing-share .btn-row .btn:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  body.site-rentals .listing-shell {
    grid-template-columns: 1fr;
  }

  body.site-rentals .listing-aside {
    position: static;
  }

  body.site-rentals .hero-rentals-trust {
    grid-template-columns: 1fr;
  }

  body.site-rentals .listing-trust-strip {
    grid-template-columns: 1fr;
  }

  body.site-rentals .listing-share .btn-row {
    grid-template-columns: 1fr;
  }

  body.site-rentals .rentals-term-grid,
  body.site-rentals .request-calendar-dates,
  body.site-rentals .request-calendar-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1360px) {
  body.site-rentals .listing-shell {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  }
}

@media (max-width: 1280px) {
  body.site-rentals .nav-links {
    gap: 0.3rem;
    flex-wrap: nowrap;
  }

  body.site-rentals .nav-links a {
    padding: 0.3rem 0.38rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 1180px) {
  body.site-rentals .nav {
    display: flex;
    min-height: 72px;
    padding: 0.58rem 0;
    align-items: center;
    justify-content: space-between;
  }

  body.site-rentals .nav-links {
    display: none;
  }

  body.site-rentals .nav-side {
    width: auto;
    justify-content: flex-end;
  }

  body.site-rentals .nav-side-desktop {
    display: none;
  }

  body.site-rentals .menu-btn {
    display: grid;
  }
}

@media (max-width: 960px) {
  body.site-rentals .brand-title {
    font-size: 1.24rem;
  }

  body.site-rentals .listing-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  body.site-rentals .listing-gallery-main {
    grid-row: auto;
  }

  body.site-rentals .taxo-grid {
    grid-template-columns: 1fr;
  }

  body.site-rentals .request-cal-months {
    grid-template-columns: 1fr;
  }
}

/* 2027 visual refresh */
body.site-rentals .hero.section {
  padding-block: clamp(1.7rem, 4vw, 3.1rem);
}

body.site-rentals .nav-links {
  flex-wrap: nowrap;
  gap: 0.34rem;
}

body.site-rentals .nav-links a {
  padding: 0.3rem 0.42rem;
}

body.site-rentals .hero-shell {
  align-items: stretch;
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
}

body.site-rentals .hero-copy {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border: 1px solid #dfe5ec;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

body.site-rentals .hero-copy h1 {
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 14ch;
}

body.site-rentals .hero-copy .lead {
  max-width: 44ch;
  color: #4d5b69;
  font-size: clamp(1.06rem, 1.5vw, 1.26rem);
}

body.site-rentals .hero-browse {
  margin-top: 0.2rem;
}

body.site-rentals .hero-link {
  font-size: 1.18rem;
  font-weight: 720;
  text-decoration: none;
}

body.site-rentals .hero-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

body.site-rentals .hero-link:hover span,
body.site-rentals .hero-link:focus-visible span {
  transform: translateX(4px);
}

body.site-rentals .hero-rentals-trust {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

body.site-rentals .hero-rentals-trust .trust-item {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  font-size: 0.95rem;
  color: #334354;
}

body.site-rentals .trust-dot {
  width: 8px;
  height: 8px;
  box-shadow: none;
}

body.site-rentals .hero-feature {
  border-radius: 26px;
  border: 1px solid #d9e1e8;
  box-shadow: 0 28px 54px rgba(13, 26, 40, 0.16);
}

body.site-rentals .hero-feature-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7dfe7;
  padding: 0.9rem 1rem;
}

body.site-rentals .hero-feature-price {
  font-size: 2rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

body.site-rentals .hero-feature-meta {
  font-size: 1rem;
}

body.site-rentals .hero-feature-link {
  font-size: 1rem;
  font-weight: 700;
}

body.site-rentals .hero-chip-label {
  margin-top: 0.22rem;
  font-size: 0.78rem;
  color: #607081;
}

body.site-rentals .hero-district-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem 1rem;
  margin-top: 0.05rem;
}

body.site-rentals .hero-district-link {
  color: #1d4240;
  text-decoration: none;
  font-weight: 640;
  border-bottom: 1px solid rgba(43, 102, 98, 0.28);
  line-height: 1.2;
}

body.site-rentals .hero-district-link:hover,
body.site-rentals .hero-district-link:focus-visible {
  border-bottom-color: #2b6662;
  color: #1b5753;
}

body.site-rentals .rentals-term-split {
  margin-top: 0.2rem;
  border-radius: 20px;
  border: 1px solid #dfe5ec;
  padding: 0.92rem;
  background: #ffffff;
}

body.site-rentals .rentals-term-head h3 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

body.site-rentals .rentals-term-grid {
  margin-top: 0.62rem;
  gap: 0.7rem;
}

body.site-rentals .rentals-term-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid #d9e2ea;
  border-radius: 16px;
  padding: 0.82rem;
  display: grid;
  gap: 0.38rem;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.site-rentals .rentals-term-card:hover,
body.site-rentals .rentals-term-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(43, 102, 98, 0.44);
  box-shadow: 0 12px 24px rgba(12, 22, 32, 0.09);
}

body.site-rentals .rentals-term-card .term-kicker {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2b6662;
  font-weight: 760;
}

body.site-rentals .rentals-term-card h4 {
  margin: 0;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

body.site-rentals .rentals-term-card p {
  margin: 0;
  color: #52606f;
  font-size: 0.98rem;
}

body.site-rentals .rentals-term-card .term-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  color: #2a3948;
}

body.site-rentals .rentals-term-card .term-meta strong {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

body.site-rentals .rentals-term-card .term-meta span {
  font-size: 0.84rem;
  color: #647384;
}

body.site-rentals .rentals-term-card .term-link {
  color: #235854;
  font-weight: 700;
  font-size: 0.95rem;
}

body.site-rentals .rentals-term-card.is-active {
  border-color: rgba(43, 102, 98, 0.5);
  box-shadow: 0 0 0 2px rgba(43, 102, 98, 0.14);
}

body.site-rentals .listing-shell {
  grid-template-columns: minmax(0, 1fr) minmax(392px, 448px);
  gap: clamp(1.05rem, 1.8vw, 1.5rem);
}

body.site-rentals .listing-article {
  padding: clamp(1.15rem, 1.9vw, 1.7rem);
}

body.site-rentals .listing-title h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
}

body.site-rentals .listing-title .lead {
  font-size: 1.06rem;
  color: #455464;
}

body.site-rentals .listing-section-surface {
  border-radius: 18px;
  border: 1px solid #dfe5ec;
  background: #ffffff;
  padding: 1rem 1.05rem;
}

body.site-rentals .listing-section-features .taxo-grid,
body.site-rentals .listing-section-amenities .taxo-grid,
body.site-rentals .listing-split .taxo-grid {
  margin-top: 0.2rem;
}

body.site-rentals .taxo-grid {
  gap: 0.45rem 1.15rem;
}

body.site-rentals .taxo-link,
body.site-rentals .taxo-text {
  border: 0;
  border-radius: 0;
  min-height: 0;
  padding: 0.14rem 0 0.14rem 1rem;
  background: transparent;
  font-size: 1.04rem;
}

body.site-rentals .taxo-link::before,
body.site-rentals .taxo-text::before {
  left: 0;
  width: 6px;
  height: 6px;
}

body.site-rentals .taxo-link:hover,
body.site-rentals .taxo-link:focus-visible {
  background: transparent;
  box-shadow: none;
  color: #1b5753;
}

body.site-rentals .taxo-text {
  border: 0;
  background: transparent;
}

body.site-rentals .icon-list {
  gap: 0.45rem;
}

body.site-rentals .icon-list li {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.14rem 0 0.14rem 1rem;
}

body.site-rentals .icon-list li::before {
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
}

body.site-rentals .listing-section-includes .icon-list-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem 0.88rem;
}

body.site-rentals .listing-section-includes .icon-list-includes li {
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  background: #f9fbfd;
  padding: 0.52rem 0.66rem 0.52rem 1.32rem;
}

body.site-rentals .listing-section-includes .icon-list-includes li::before {
  left: 0.52rem;
  top: 1.02rem;
}

body.site-rentals .listing-contact {
  border: 1px solid #d3dce6;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 24px 44px rgba(12, 22, 32, 0.12);
  padding: 1.15rem;
}

body.site-rentals .listing-contact-price {
  font-size: clamp(2.7rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 0.94;
}

body.site-rentals .listing-contact-subprice {
  margin-top: 0.3rem;
  font-size: 1rem;
}

body.site-rentals .listing-contact-meta {
  margin-top: 0.72rem;
  font-size: 1rem;
}

body.site-rentals .listing-contact .cta-row {
  margin-top: 0.94rem;
}

body.site-rentals .listing-contact .btn {
  font-size: 1.02rem;
  border-radius: 14px;
}

body.site-rentals .listing-contact .btn.block {
  border-color: #d3dde6;
  background: #ffffff;
  color: #0c1620;
}

body.site-rentals .listing-contact .muted {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #2f3f4f;
}

body.site-rentals .listing-pricing-note {
  margin-top: 0.46rem;
  font-size: 0.9rem;
}

body.site-rentals .listing-share {
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid #dbe4ec;
}

body.site-rentals .listing-share .caption {
  margin: 0 0 0.44rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #667586;
  font-weight: 700;
}

body.site-rentals .listing-share-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.42rem;
}

body.site-rentals .share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3dde6;
  border-radius: 12px;
  background: #ffffff;
  color: #122130;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.52rem 0.55rem;
  transition: border-color 160ms ease, transform 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

body.site-rentals .share-link:hover,
body.site-rentals .share-link:focus-visible {
  border-color: rgba(43, 102, 98, 0.42);
  color: #1c5855;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(12, 22, 32, 0.09);
}

body.site-rentals .share-link-copy {
  font: inherit;
  cursor: pointer;
}

body.site-rentals .listing-aside-extra {
  margin-top: 0.9rem;
}

body.site-rentals .listing-aside .request-calendar-card {
  border-radius: 24px;
  border: 1px solid #d3dde6;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(12, 22, 32, 0.08);
  padding: 1.02rem 1.06rem;
}

body.site-rentals .listing-aside .request-calendar-card h3 {
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

body.site-rentals .listing-aside .request-cal-status {
  font-size: 1rem;
}

body.site-rentals .listing-aside .request-cal-month h4 {
  font-size: 1.02rem;
}

body.site-rentals .listing-aside .rq-day {
  min-height: 36px;
  border-radius: 11px;
}

body.site-rentals .listing-aside .rq-day-head {
  font-size: 0.72rem;
}

body.site-rentals .listing-aside .request-cal-months {
  gap: 0.62rem;
}

body.site-rentals .hero-copy,
body.site-rentals .hero-feature {
  animation: rentals-fade-up 480ms ease both;
}

body.site-rentals .hero-feature {
  animation-delay: 80ms;
}

@keyframes rentals-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.site-rentals .hero-copy,
  body.site-rentals .hero-feature {
    animation: none;
  }
}

@media (max-width: 1180px) {
  body.site-rentals .nav {
    display: flex;
    min-height: 72px;
    padding: 0.58rem 0;
    align-items: center;
    justify-content: space-between;
  }

  body.site-rentals .nav-links {
    display: none;
  }

  body.site-rentals .nav-side {
    width: auto;
    justify-content: flex-end;
  }

  body.site-rentals .nav-side-desktop {
    display: none;
  }

  body.site-rentals .menu-btn {
    display: grid;
  }
}

@media (max-width: 1320px) {
  body.site-rentals .listing-shell {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  }
}

@media (max-width: 1160px) {
  body.site-rentals .hero-shell,
  body.site-rentals .listing-shell {
    grid-template-columns: 1fr;
  }

  body.site-rentals .listing-aside {
    position: static;
  }

  body.site-rentals .listing-aside .request-cal-months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body.site-rentals .listing-section-includes .icon-list-includes {
    grid-template-columns: 1fr;
  }

  body.site-rentals .listing-share-links {
    grid-template-columns: 1fr 1fr;
  }

  body.site-rentals .share-link-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body.site-rentals .hero-copy h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  body.site-rentals .hero-rentals-trust {
    gap: 0.48rem 0.9rem;
  }

  body.site-rentals .rentals-term-grid,
  body.site-rentals .listing-aside .request-cal-months,
  body.site-rentals .taxo-grid {
    grid-template-columns: 1fr;
  }
}

/* 2027.3 corrections: homepage balance, non-pill controls, dedicated call form */
body.site-rentals .btn,
body.site-rentals .share-link,
body.site-rentals .fab,
body.site-rentals .chip,
body.site-rentals .listing-term-badge {
  border-radius: 12px;
}

body.site-rentals .hero-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

body.site-rentals .hero-copy {
  padding: clamp(1rem, 2vw, 1.45rem);
  gap: 0.9rem;
}

body.site-rentals .hero-rentals-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.2rem;
}

body.site-rentals .hero-rentals-trust .trust-item {
  margin: 0;
  border: 1px solid #dce3eb;
  border-radius: 10px;
  background: #fff;
  padding: 0.4rem 0.48rem;
  font-size: 0.84rem;
  color: #3c4d5d;
}

body.site-rentals .hero-rotator {
  position: relative;
  display: grid;
  gap: 0.62rem;
}

body.site-rentals .hero-rotator-track {
  position: relative;
  border: 1px solid #d7dfe7;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  min-height: 580px;
  background: #e9eef3;
  box-shadow: 0 24px 48px rgba(12, 22, 32, 0.14);
}

body.site-rentals .hero-rotator-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  transition: opacity 340ms ease;
}

body.site-rentals .hero-rotator-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

body.site-rentals .hero-rotator-slide picture,
body.site-rentals .hero-rotator-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.site-rentals .hero-rotator-overlay {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  gap: 0.22rem;
  padding: 0.78rem 0.86rem;
  border: 1px solid #d7dfe7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
}

body.site-rentals .hero-rotator-title {
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.015em;
  color: #0e1a27;
}

body.site-rentals .hero-rotator-meta {
  color: #556475;
  font-size: 0.88rem;
}

body.site-rentals .hero-rotator-price {
  color: #0f1f2e;
  font-size: 1.12rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

body.site-rentals .hero-rotator-link {
  color: #205a56;
  font-size: 0.88rem;
  font-weight: 700;
}

body.site-rentals .hero-rotator-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  margin-inline: auto;
  padding: 0.32rem 0.44rem;
  border: 1px solid #d8e0e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(12, 22, 32, 0.08);
}

body.site-rentals .hero-rotator-btn {
  border: 1px solid #d7dfe7;
  background: #fff;
  color: #12303e;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

body.site-rentals .hero-rotator-btn:hover,
body.site-rentals .hero-rotator-btn:focus-visible {
  border-color: rgba(43, 102, 98, 0.42);
  background: #f7fafd;
  transform: translateY(-1px);
}

body.site-rentals .hero-rotator-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

body.site-rentals .hero-rotator-dot {
  border: 1px solid #ccd5df;
  background: #edf2f7;
  width: 16px;
  height: 8px;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}

body.site-rentals .hero-rotator-dot.is-active {
  width: 28px;
  border-color: rgba(43, 102, 98, 0.62);
  background: #2b6662;
}

body.site-rentals .rentals-home-support {
  padding-top: 0.35rem;
}

body.site-rentals .rentals-home-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: start;
}

body.site-rentals .rentals-home-support .rentals-term-split {
  margin-top: 0;
}

body.site-rentals .rentals-home-district {
  border-radius: 20px;
  border: 1px solid #dce3eb;
  background: #ffffff;
  padding: 1rem;
}

body.site-rentals .rentals-home-district h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

body.site-rentals .rentals-home-district .caption {
  margin: 0.35rem 0 0;
}

body.site-rentals .hero-district-row {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.46rem;
}

body.site-rentals .hero-district-link {
  border: 1px solid #d8e0e8;
  border-radius: 10px;
  padding: 0.46rem 0.6rem;
  background: #f8fbfd;
  color: #12333f;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
}

body.site-rentals .hero-district-link:hover,
body.site-rentals .hero-district-link:focus-visible {
  border-color: rgba(43, 102, 98, 0.44);
  color: #1c5753;
  background: #ffffff;
}

body.site-rentals .listing-shell {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
}

body.site-rentals .listing-contact {
  box-shadow: 0 14px 26px rgba(12, 22, 32, 0.08);
}

body.site-rentals .listing-call-form-card {
  border-radius: 18px;
  border: 1px solid #d7dfe7;
  padding: 0.95rem 1rem;
  background: #fff;
}

body.site-rentals .listing-call-form-card h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

body.site-rentals .call-request-form {
  margin-top: 0.62rem;
}

body.site-rentals .call-request-form textarea {
  min-height: 88px;
}

body.site-rentals .listing-share-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.site-rentals .footer-top-card {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

body.site-rentals .footer-top-card::before,
body.site-rentals .footer-top-card::after {
  display: none;
}

body.site-rentals .footer-top-badges {
  display: none;
}

body.site-rentals .footer-top-actions .btn {
  min-height: 52px;
  border-radius: 12px;
}

body.site-rentals .footer-top-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.site-rentals .footer-top-actions .btn:first-child {
  grid-column: 1 / -1;
}

body.site-rentals .sticky-fab {
  right: 0.78rem;
  bottom: 0.72rem;
  gap: 0.32rem;
}

body.site-rentals .fab {
  border-radius: 10px;
  padding: 0.5rem 0.74rem;
  font-size: 0.77rem;
}

@media (min-width: 1181px) {
  body.site-rentals .nav {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    min-height: 86px;
    align-items: center;
  }

  body.site-rentals .nav-links {
    display: flex !important;
    justify-content: center;
  }

  body.site-rentals .nav-side-desktop {
    display: flex !important;
  }

  body.site-rentals .menu-btn {
    display: none !important;
  }
}

@media (max-width: 1280px) {
  body.site-rentals .hero-rentals-trust {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1160px) {
  body.site-rentals .hero-shell,
  body.site-rentals .rentals-home-support-grid,
  body.site-rentals .listing-shell {
    grid-template-columns: 1fr;
  }

  body.site-rentals .hero-rotator-track {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  body.site-rentals .hero-rentals-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.site-rentals .hero-district-row {
    grid-template-columns: 1fr;
  }

  body.site-rentals .hero-rotator-overlay {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
  }
}

/* 2027.4 hero consistency pass */
body.site-rentals .hero.section {
  padding-block: clamp(1.25rem, 2.6vw, 2rem);
}

body.site-rentals .hero-shell {
  border: 1px solid #dbe2ea;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(12, 22, 32, 0.08);
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
  gap: clamp(0.9rem, 1.6vw, 1.2rem);
}

body.site-rentals .hero-copy {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: clamp(0.45rem, 1vw, 0.65rem);
  gap: 0.72rem;
}

body.site-rentals .hero-copy h1 {
  font-size: clamp(2.3rem, 3.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.034em;
  max-width: 14ch;
  text-wrap: balance;
}

body.site-rentals .hero-copy .lead {
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.48;
  max-width: 32ch;
}

body.site-rentals .hero-browse {
  margin-top: 0;
}

body.site-rentals .hero-link {
  font-size: 1.02rem;
}

body.site-rentals .hero-rentals-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  margin-top: 0.1rem;
}

body.site-rentals .hero-rentals-trust .trust-item {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 0.93rem;
  color: #394b5b;
}

body.site-rentals .hero-rotator {
  height: 100%;
  min-height: 0;
}

body.site-rentals .hero-rotator-track {
  min-height: 460px;
  aspect-ratio: auto;
  height: 100%;
  border-radius: 24px;
}

body.site-rentals .hero-rotator-controls {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  margin: 0;
  padding: 0.28rem 0.4rem;
  border: 1px solid #d8e0e8;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(12, 22, 32, 0.12);
}

body.site-rentals .hero-rotator-btn {
  width: 32px;
  height: 32px;
}

body.site-rentals .hero-rotator-dot {
  width: 14px;
  height: 6px;
}

body.site-rentals .hero-rotator-dot.is-active {
  width: 22px;
}

body.site-rentals .hero-rotator-overlay {
  left: 0.75rem;
  right: 0.75rem;
  bottom: 3.1rem;
  border-radius: 13px;
}

body.site-rentals .rentals-home-support {
  padding-top: 0.35rem;
  padding-bottom: 0.7rem;
}

body.site-rentals .rentals-home-support-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.92rem;
  align-items: start;
}

body.site-rentals .rentals-home-support-grid > * {
  align-self: start;
}

body.site-rentals .rentals-home-support .rentals-term-split,
body.site-rentals .rentals-home-district {
  border-radius: 22px;
  border: 1px solid #dbe2ea;
  background: #fff;
  box-shadow: 0 10px 24px rgba(12, 22, 32, 0.05);
}

body.site-rentals .rentals-home-district {
  padding: 1rem 1.02rem;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  align-self: start;
  min-height: 0 !important;
  height: fit-content !important;
}

body.site-rentals .rentals-home-support + .section {
  padding-top: 0.9rem;
}

@media (max-width: 1160px) {
  body.site-rentals .hero-shell {
    border-radius: 24px;
  }

  body.site-rentals .hero-rotator-track {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  body.site-rentals .hero-rotator-controls {
    position: static;
    transform: none;
    margin: 0.6rem auto 0;
  }

  body.site-rentals .hero-rotator-overlay {
    bottom: 0.7rem;
  }

  body.site-rentals .rentals-home-support-grid {
    grid-template-columns: 1fr;
  }
}
