:root {
  --rm-ink: #121212;
  --rm-muted: #5f6368;
  --rm-soft: #f6f3ee;
  --rm-line: #e7dfd4;
  --rm-gold: #b8935a;
  --rm-gold-dark: #8f6e3e;
  --rm-green: #166534;
  --rm-amber: #b45309;
  --rm-error: #b91c1c;
  --rm-radius: 8px;
  --rm-shadow: 0 18px 54px rgba(18, 18, 18, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rm-ink);
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--rm-line);
  backdrop-filter: blur(14px);
}

.topbar__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  line-height: 1.05;
}

.brand__name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand__sub {
  display: block;
  margin-top: 3px;
  color: var(--rm-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.nav a {
  color: #252525;
  text-decoration: none;
}

.nav a:hover {
  color: var(--rm-gold-dark);
}

.mobile-nav-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  border: 1px solid var(--rm-line);
  background: #fff;
  border-radius: var(--rm-radius);
  font: inherit;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--rm-line);
  padding: 12px 0 16px;
}

.mobile-nav a {
  display: block;
  padding: 9px 0;
  color: #252525;
  text-decoration: none;
}

.hero {
  padding: 56px 0 44px;
  background: linear-gradient(180deg, #fff 0%, var(--rm-soft) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 38px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rm-gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.55rem, 6vw, 5rem);
  font-weight: 600;
}

h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--rm-muted);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--rm-ink);
  border-radius: var(--rm-radius);
  padding: 0 20px;
  background: var(--rm-ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover {
  background: var(--rm-gold-dark);
  border-color: var(--rm-gold-dark);
}

.btn--secondary {
  background: #fff;
  color: var(--rm-ink);
}

.btn--secondary:hover {
  color: #fff;
}

.btn--gold {
  background: var(--rm-gold);
  border-color: var(--rm-gold);
}

.trust-strip {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  max-width: 520px;
  padding: 14px;
  border: 1px solid var(--rm-line);
  border-radius: var(--rm-radius);
  background: #fff;
}

.trust-strip img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.trust-strip strong {
  display: block;
}

.trust-strip span {
  display: block;
  margin-top: 3px;
  color: var(--rm-muted);
  font-size: 0.9rem;
}

.form-panel {
  background: #fff;
  border: 1px solid var(--rm-line);
  border-radius: var(--rm-radius);
  box-shadow: var(--rm-shadow);
  padding: 24px;
}

.form-panel h2 {
  font-size: 2.2rem;
}

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

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.check-row span {
  color: #292929;
  font-size: 0.82rem;
  font-weight: 750;
}

.field small {
  color: var(--rm-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8d2c9;
  border-radius: var(--rm-radius);
  padding: 11px 12px;
  color: var(--rm-ink);
  background: #fff;
  font: inherit;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(184, 147, 90, 0.28);
  border-color: var(--rm-gold);
}

.check-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  color: var(--rm-muted);
  font-size: 0.9rem;
}

.check-row input {
  margin-top: 4px;
}

.form-status {
  margin: 14px 0 0;
  color: var(--rm-muted);
  font-size: 0.92rem;
}

.form-status[data-tone="error"] {
  color: var(--rm-error);
}

.form-status[data-tone="success"] {
  color: var(--rm-green);
}

.section {
  padding: 58px 0;
}

.section--soft {
  background: var(--rm-soft);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-intro p {
  color: var(--rm-muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  border: 1px solid var(--rm-line);
  border-radius: var(--rm-radius);
  background: #fff;
  padding: 18px;
}

.card p {
  margin: 0;
  color: var(--rm-muted);
}

.number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--rm-ink);
  color: #fff;
  font-weight: 800;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--rm-line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: #292929;
  font-size: 0.92rem;
}

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

.faq-list details {
  border: 1px solid var(--rm-line);
  border-radius: var(--rm-radius);
  background: #fff;
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--rm-ink);
  font-weight: 800;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--rm-muted);
}

.disclaimer {
  border-left: 4px solid var(--rm-gold);
  background: #fffaf2;
  padding: 18px;
  color: #5a4730;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--rm-muted);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--rm-gold-dark);
  text-decoration: none;
}

.city-hero {
  padding: 44px 0;
  background: var(--rm-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.footer {
  padding: 48px 0 88px;
  background: #080808;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer a:hover {
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(0, 0.8fr));
  gap: 30px;
}

.footer__title {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}

.footer ul {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.footer li {
  margin: 8px 0;
}

.legal {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--rm-line);
  backdrop-filter: blur(14px);
}

.sticky-mobile-cta .btn {
  min-height: 44px;
  padding: 0 10px;
  font-size: 0.76rem;
}

.search-shell {
  padding: 44px 0 24px;
  background: var(--rm-soft);
}

.search-panel {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--rm-line);
  border-radius: var(--rm-radius);
  box-shadow: var(--rm-shadow);
  padding: 22px;
}

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

.chip-button {
  min-height: 42px;
  border: 1px solid var(--rm-line);
  border-radius: var(--rm-radius);
  background: #fff;
  color: #292929;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
}

.chip-button.is-active,
.chip-button:hover {
  border-color: var(--rm-gold);
  background: #fff8ec;
}

.results-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rm-line);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}

.rental-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--rm-line);
  border-radius: var(--rm-radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.rental-card:hover {
  box-shadow: var(--rm-shadow);
}

.rental-card__image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #eee7dc;
}

.rental-card__body {
  padding: 14px;
}

.rental-card__row {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  color: #fff;
  background: var(--rm-green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--amber {
  background: var(--rm-amber);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  height: calc(100vh - 72px);
}

#rm-map-container {
  min-height: 420px;
}

.map-panel {
  overflow: auto;
  border-left: 1px solid var(--rm-line);
  background: var(--rm-soft);
}

.map-panel__head {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  border-bottom: 1px solid var(--rm-line);
  padding: 14px;
  font-weight: 800;
}

.map-panel__body {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.property-hero {
  padding: 36px 0;
  background: var(--rm-soft);
}

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

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.article-body {
  max-width: 760px;
}

.article-body section + section {
  margin-top: 34px;
}

.article-body p {
  color: var(--rm-muted);
  font-size: 1.02rem;
}

.article-body ul {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--rm-muted);
}

.callout,
.sidebar-card {
  border: 1px solid var(--rm-line);
  border-radius: var(--rm-radius);
  background: var(--rm-soft);
  padding: 24px;
}

.sidebar-card {
  position: sticky;
  top: 96px;
  background: #fff;
  box-shadow: var(--rm-shadow);
}

.sidebar-links {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.sidebar-links a {
  color: var(--rm-gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.sidebar-links a:hover {
  text-decoration: underline;
}

.property-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--rm-radius);
  background: #eee7dc;
}

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

@media (max-width: 920px) {
  .hero__grid,
  .split,
  .property-grid {
    grid-template-columns: 1fr;
  }

  .grid--3,
  .grid--4,
  .field-grid--three,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .map-panel {
    border-left: 0;
    border-top: 1px solid var(--rm-line);
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero {
    padding-top: 36px;
  }

  .field-grid,
  .field-grid--three,
  .grid--2,
  .grid--3,
  .grid--4,
  .footer__grid,
  .city-picker,
  .article-layout,
  .property-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

  .form-panel {
    padding: 18px;
  }

  .sticky-mobile-cta {
    display: grid;
  }

  .footer {
    padding-bottom: 112px;
  }
}
