/* ========================================
   Erola Comfy – Classic Professional Styles
   ======================================== */

:root {
  --forest: #3871c1;
  --forest-light: #2d5aa0;
  --gold: #a34392;
  --gold-soft: #c46bb8;
  --cream: #F8F5F0;
  --cream-dark: #EFEAE2;
  --charcoal: #2C2C2C;
  --muted: #6B6B6B;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(26, 60, 52, 0.08);
  --shadow-hover: 0 12px 40px rgba(26, 60, 52, 0.14);
  --radius: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--gold);
}

/* Erola Comfy logo */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 56px;
  filter: brightness(0) invert(1); /* make logo light on dark footer if needed */
}
.site-footer .logo-img-footer {
  filter: none; /* keep original colors on footer, or adjust */
  height: 52px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
}


.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--forest);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

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

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  margin: 5px 0;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26,60,52,0.55), rgba(26,60,52,0.35)),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Search bar */
.search-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  max-width: 900px;
  margin: 0 auto;
}

.search-field {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  padding: 0.4rem 1rem;
  border-right: 1px solid #eee;
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: transparent;
  font-family: inherit;
}

.search-bar .btn {
  align-self: center;
  padding: 0.9rem 1.8rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Property Cards ---------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

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

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}

.card-badge.long { background: var(--gold); color: var(--forest); }
.card-badge.both { background: rgba(255,255,255,0.9); color: var(--forest); }

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-location {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.card-price {
  font-weight: 600;
  color: var(--forest);
}

.card-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.card-rating svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* ---------- Filters ---------- */
.filters-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 140px;
}

.filter-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.filter-group select,
.filter-group input {
  padding: 0.55rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}

.filter-group select:focus,
.filter-group input:focus {
  border-color: var(--forest);
}

/* ---------- Property Detail ---------- */
.detail-hero {
  height: 55vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
}

.detail-content {
  max-width: 1100px;
  margin: -4rem auto 0;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
}

.detail-main {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.amenity-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery img {
  height: 140px;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity var(--transition);
}

.gallery img:hover {
  opacity: 0.85;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-toggle {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.price-toggle button {
  flex: 1;
  padding: 0.6rem;
  border: 1.5px solid #ddd;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.price-toggle button.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.booking-form .form-group {
  margin-bottom: 1rem;
}

.booking-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--cream);
}

.booking-form textarea {
  resize: vertical;
  min-height: 90px;
}

.host-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.host-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
}

/* ---------- About / Contact ---------- */
.page-hero {
  background: var(--forest);
  color: var(--white);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.content-block p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.85);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold-soft);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}

/* ---------- Responsive ---------- */

/* Prevent horizontal scroll on all devices */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Tablet and below */
@media (max-width: 900px) {
  .detail-content {
    grid-template-columns: 1fr;
    margin-top: -2.5rem;
    gap: 1.5rem;
  }
  .booking-card {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-main {
    padding: 1.75rem;
  }
  .section {
    padding: 3.5rem 1.25rem;
  }
}

/* Mobile landscape / large phones */
@media (max-width: 768px) {
  .header-inner {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }

  .logo-img {
    height: 40px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(56, 113, 193, 0.12);
    box-shadow: var(--shadow);
    z-index: 200;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 0.85rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }
  .nav a.active::after {
    display: none;
  }
  .nav-toggle {
    display: block;
    padding: 0.65rem;
    min-width: 44px;
    min-height: 44px;
  }

  .hero {
    height: auto;
    min-height: 70vh;
    padding: 3rem 0 2.5rem;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
  .hero p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }

  .search-bar {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0.5rem;
    min-width: 0;
  }
  .search-field:last-of-type {
    border-bottom: 1px solid #eee;
  }
  .search-bar .btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.95rem 1.5rem;
  }

  .section {
    padding: 2.75rem 1rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .card-image {
    height: 200px;
  }

  .filters-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.85rem;
  }
  .filter-group {
    min-width: 0;
    width: 100%;
  }
  .filter-group select,
  .filter-group input {
    width: 100%;
    padding: 0.7rem 0.85rem;
    font-size: 1rem; /* prevents iOS zoom */
  }
  .filters-bar .btn {
    width: 100%;
    padding: 0.9rem;
  }

  .detail-content {
    padding: 0 1rem 3rem;
  }
  .detail-main {
    padding: 1.35rem;
  }
  .detail-main h1 {
    font-size: 1.75rem !important;
  }
  .detail-meta {
    gap: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .gallery img {
    height: 110px;
  }
  .amenities-list {
    grid-template-columns: 1fr 1fr;
  }
  .booking-card {
    padding: 1.35rem;
  }
  .price-toggle button {
    padding: 0.75rem 0.5rem;
    min-height: 44px;
  }
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 1rem; /* prevents iOS zoom on focus */
    padding: 0.8rem 0.9rem;
  }
  .booking-form .btn {
    min-height: 48px;
  }

  .page-hero {
    padding: 3rem 1rem 2.5rem;
  }
  .page-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .contact-form {
    padding: 1.5rem;
    margin: 0 0.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .site-footer {
    padding: 2.5rem 1rem 1.5rem;
  }
  .site-footer .logo-img-footer {
    height: 44px;
  }

  /* Dashboard */
  .dash-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .logo-img {
    height: 34px;
  }
  .hero {
    min-height: 62vh;
    padding: 2.25rem 0 2rem;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .card-body {
    padding: 1.15rem;
  }
  .card-title {
    font-size: 1.25rem;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery img {
    height: 180px;
  }
  .amenities-list {
    grid-template-columns: 1fr;
  }
  .detail-main h1 {
    font-size: 1.5rem !important;
  }
  .btn {
    padding: 0.75rem 1.25rem;
  }
  .section {
    padding: 2.25rem 0.85rem;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .logo-img {
    height: 30px;
  }
  .header-inner {
    padding: 0.6rem 0.75rem;
  }
}


/* High-contrast Explore homes CTA */
.btn-explore,
a.btn.btn-primary.btn-sm {
  background: #1e3a5f !important;
  color: #ffffff !important;
  border: 2px solid #1e3a5f !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.25);
}
.btn-explore:hover,
a.btn.btn-primary.btn-sm:hover {
  background: #152a45 !important;
  border-color: #152a45 !important;
  color: #fff !important;
}


/* Listings hero — calm stone graphic background */
.page-hero-listings {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  padding: 4.5rem 1.5rem 4rem;
  background-color: #0e1a22;
  background-image:
    linear-gradient(180deg, rgba(8, 16, 22, 0.55) 0%, rgba(8, 16, 22, 0.72) 55%, rgba(8, 16, 22, 0.85) 100%),
    url('/images/listings-hero.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: #f4efe3;
  text-align: center;
  overflow: hidden;
}
.page-hero-listings::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(30, 50, 65, 0.15), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.page-hero-listings .page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero-listings .hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a227;
  margin: 0 0 1rem;
}
.page-hero-listings h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1.1rem;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.page-hero-listings .hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 239, 227, 0.92);
  margin: 0 auto 1rem;
  max-width: 640px;
}
.page-hero-listings .hero-cta-line {
  font-size: 1rem;
  font-weight: 600;
  color: #e8d48b;
  margin: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .page-hero-listings {
    min-height: 280px;
    padding: 3.25rem 1.15rem 3rem;
    background-position: center 35%;
  }
  .page-hero-listings .hero-lead { font-size: 0.95rem; }
}
