@import url("base.15e3bbac9986.css");

body {
  font-family: var(--font-display);
  color: var(--ink);
  background: var(--surface);
}
.icon { display: inline-block; }

.page-messages { max-width: 1280px; margin: 12px auto 0; padding: 0 clamp(16px, 4vw, 40px); }
.page-message {
  padding: 12px 18px; border-radius: 10px; font-size: 14px; font-weight: 600;
  background: #FEECEC; color: #B3261E; border: 1px solid #F6C6C4;
}

#site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(16px, 4vw, 40px);
  padding-top: 14px; padding-bottom: 14px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.logo-lockup {
  display: flex; align-items: center; gap: 10px;
  background: #fff; padding: 6px 14px; border-radius: 12px;
  box-shadow: 0 1px 2px rgba(14,26,47,.06);
}
.header-logo { height: 56px; display: block; }
.wordmark { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.03em; color: var(--ink); }
.wordmark-accent { color: var(--brand); }
.wordmark-tld { font-size: 13px; font-weight: 600; color: var(--muted-2); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(12px, 2vw, 30px); flex-wrap: wrap; }
.site-nav a, .nav-favorites { font-size: 15px; font-weight: 600; color: var(--body-2); display: inline-flex; align-items: center; gap: 6px; }
.site-nav a:hover { color: var(--brand); }
.favorites-badge {
  min-width: 20px; height: 20px; border-radius: 10px; background: var(--brand-soft);
  color: var(--brand); font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
}
.auth-buttons { display: flex; align-items: center; gap: 10px; }
.login-button {
  padding: 11px 22px; border-radius: 999px; border: 1.5px solid var(--brand);
  color: var(--brand); font-size: 15px; font-weight: 700;
  transition: background-color .15s ease, color .15s ease;
}
.login-button:hover { background: var(--brand); color: #fff; }
.register-button {
  padding: 11px 22px; border-radius: 999px; border: 1.5px solid var(--brand);
  background: var(--brand); color: #fff; font-size: 15px; font-weight: 700;
  transition: opacity .15s ease;
}
.register-button:hover { opacity: .88; }
.lang-switch select {
  appearance: none; border: 1.5px solid var(--border-3); border-radius: 999px;
  background: var(--surface); color: var(--body-2);
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  padding: 6px 10px; cursor: pointer;
}
.lang-switch select:hover, .lang-switch select:focus-visible { border-color: var(--brand); color: var(--brand); }

/* Nothing collapses into a hamburger menu on this site yet - the header is
   pure flex-wrap. Below ~480px, logo + nav links + both auth buttons don't
   fit on one line and the header wraps to 3 rows; shrink the pieces that
   take the most width (the two pill buttons, the nav's own gaps) so it
   packs into fewer rows instead of building out a collapsed-menu pattern
   that doesn't exist anywhere else in the codebase yet. */
@media (max-width: 480px) {
  .header-inner { justify-content: center; }
  .logo-lockup { flex-basis: 100%; justify-content: center; }
  .header-logo { height: 52px; }
  .site-nav { gap: 10px; }
  .site-nav a, .nav-favorites { font-size: 13px; }
  .login-button, .register-button { padding: 8px 14px; font-size: 13px; }
}

#hero { position: relative; background: var(--surface-tint); }
.hero-photo {
  position: absolute; inset: 0;
  background: url("../img/hero-bg.6e21bcdd362a.jpg") center/cover no-repeat;
}
.hero-scrim {
  position: absolute; inset: 0;
  /* Middle stop is deliberately lighter than the placeholder gradient's (.55) --
     the real photo is a dark, moody interior, so the --ink headline/body text
     needs a stronger wash here to stay legible against it. Client feedback
     ("the page is very pale") asked for more of the photo to show through;
     a first pass (.94/.86/.94 -> .85/.72/.85) was confirmed via screenshot
     to still read as too washed out, so eased it further here. --ink text
     has a lot of contrast margin against even a fully-revealed dark photo,
     so this can go most of the way to the placeholder's .55 without risking
     legibility.
  */
  background: linear-gradient(180deg, rgba(244,247,252,.72) 0%, rgba(244,247,252,.58) 45%, rgba(244,247,252,.72) 100%);
}
.hero-content {
  position: relative; max-width: 1000px; margin: 0 auto; text-align: center;
  padding: clamp(56px,8vw,104px) clamp(16px, 4vw, 40px) clamp(72px,8vw,112px);
}
.hero-content h1 {
  font-size: clamp(34px, 5.4vw, 62px); line-height: 1.06; letter-spacing: -0.035em;
  font-weight: 800; text-wrap: balance; color: var(--ink);
}
.hero-h1-accent { color: var(--brand); }
.hero-subhead {
  max-width: 560px; margin: 20px auto 0; font-size: clamp(15px,1.5vw,18px);
  line-height: 1.55; color: var(--body); text-wrap: pretty;
}
.search-block { max-width: 780px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 14px; }
.search-tabs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.search-tab {
  padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; background: rgba(255,255,255,0.75); color: var(--body-2);
  transition: opacity .15s ease;
}
.search-tab:hover { opacity: .85; }
.search-tab.active { background: var(--ink); color: #fff; }
.search-bar {
  background: #fff; border-radius: 18px; padding: 10px 10px 10px 20px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  box-shadow: 0 18px 44px -18px rgba(14,26,47,.32), 0 0 0 1px rgba(14,26,47,.05);
}
.search-bar input[type="text"] {
  flex: 1 1 200px; border: none; outline: none; background: transparent;
  font-size: 16px; font-weight: 500; font-family: var(--font-display);
}
.search-submit {
  padding: 15px 30px; border-radius: 12px; background: var(--brand); color: #fff;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer;
  box-shadow: 0 10px 22px -10px rgba(27,92,255,.8);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background-color .15s ease;
}
.search-submit:hover { background: var(--brand-hover); }
.search-suggestions { font-size: 13px; color: var(--body-2); text-align: center; }
.search-suggestions a { border-bottom: 1px dashed var(--placeholder); transition: color .15s ease, border-color .15s ease; }
.search-suggestions a:hover { color: var(--brand); border-color: var(--brand); }
.show-full-map-link {
  align-self: center; font-size: 14px; font-weight: 700; color: var(--body-2);
  border-bottom: 1px dashed var(--placeholder); transition: color .15s ease, border-color .15s ease;
}
.show-full-map-link:hover { color: var(--brand); border-color: var(--brand); }

.category-cards {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  max-width: 900px; margin: 32px auto 0; transform: translateY(50%);
}
.category-card {
  display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 999px;
  background: #fff; box-shadow: 0 14px 34px -20px rgba(14,26,47,.35), 0 0 0 1px rgba(14,26,47,.05);
  font-size: 12px; font-weight: 700; color: var(--ink);
  transition: box-shadow .18s ease;
}
.category-card:hover { box-shadow: 0 20px 40px -18px rgba(27,92,255,.4), 0 0 0 1.5px var(--brand); }

.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
/* Reduced from clamp(110px,12vw,150px): the category cards (#341) shrank to
   roughly half their old height, so their translateY(50%) overlap into this
   section shrank by about the same amount - this keeps the gap between the
   cards and "Popular cities" from growing now that the cards are smaller. */
#popular-cities { padding-top: clamp(75px,8vw,105px); }
#featured-listings { padding-top: clamp(64px,8vw,96px); }
.section-header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.section-header h2 { font-size: clamp(24px,3vw,34px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.section-link { font-size: 15px; font-weight: 700; color: var(--brand); }
.section-subhead { font-size: 16px; color: var(--body); margin-top: 8px; }

.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; margin-top: 24px; }
.city-tile { position: relative; display: block; height: 170px; border-radius: 16px; overflow: hidden; }
.city-tile-photo {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, #DEE6F4 0 14px, #E9EEF8 14px 28px);
}
.city-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,26,47,0) 40%, rgba(14,26,47,.72) 100%);
}
.city-tile-caption { position: absolute; left: 16px; bottom: 14px; z-index: 1; display: flex; flex-direction: column; }
.city-name { font-size: 18px; font-weight: 800; color: #fff; }
.city-count { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.82); }
.city-tile:hover { box-shadow: 0 18px 34px -18px rgba(14,26,47,.45); }

.listing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; margin-top: 24px; }
.listing-card {
  border-radius: 18px; overflow: hidden; background: #fff;
  box-shadow: 0 0 0 1px var(--border-2); transition: box-shadow .18s ease;
}
.listing-card:hover { box-shadow: 0 22px 44px -22px rgba(14,26,47,.4), 0 0 0 1px var(--border-4); }
.listing-media {
  display: block; position: relative; height: 210px;
  background: repeating-linear-gradient(135deg, #E6EDF9 0 14px, #EFF3FA 14px 28px) center/cover;
}
.listing-badge {
  position: absolute; top: 12px; left: 12px; padding: 6px 12px; border-radius: 999px;
  background: #fff; font-size: 12px; font-weight: 700; color: var(--brand);
}
.listing-save {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 999px;
  background: #fff; border: none; cursor: pointer; color: var(--placeholder);
  display: flex; align-items: center; justify-content: center; transition: background-color .15s ease, color .15s ease;
}
.listing-save:hover { background: var(--brand-soft); }
.listing-save.saved { color: var(--brand); }
.listing-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.listing-price { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.listing-title { font-size: 16px; font-weight: 600; color: var(--ink-2); line-height: 1.35; }
.listing-address { font-size: 14px; font-weight: 500; color: var(--muted); }
.listing-chips { display: flex; gap: 8px; border-top: 1px solid #EEF1F7; padding-top: 12px; }
.listing-chip { padding: 7px 12px; border-radius: 8px; background: var(--surface-tint); font-size: 13px; font-weight: 600; color: var(--body-2); }

.btn-primary {
  padding: 15px 28px; border-radius: 12px; background: var(--brand); color: #fff;
  font-size: 15px; font-weight: 700; transition: background-color .15s ease;
}
.btn-primary:hover { background: var(--brand-hover-dark); }

#how-it-works { padding: clamp(64px,8vw,96px) 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 26px; }
.step-number { font-family: var(--font-mono); font-size: 13px; color: var(--brand); }
.step h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin: 10px 0; border-top: 2px solid var(--border); padding-top: 14px; }
.step p:last-child { font-size: 15px; line-height: 1.6; color: var(--body); }

#agency-promo { padding-bottom: clamp(64px,8vw,96px); }
.agency-promo-img {
  display: block; width: 100%; max-width: 900px; margin: 0 auto; border-radius: 20px;
  box-shadow: 0 22px 44px -22px rgba(14,26,47,.35), 0 0 0 1px rgba(14,26,47,.05);
  transition: box-shadow .18s ease;
}
#agency-promo a:hover .agency-promo-img { box-shadow: 0 28px 52px -20px rgba(27,92,255,.35), 0 0 0 1.5px var(--brand); }

#seller-cta { padding-bottom: clamp(64px,8vw,96px); }
.seller-cta-panel {
  border-radius: 24px; border: 1.5px solid var(--border-3); padding: clamp(26px,3.5vw,44px);
  display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap;
}
.seller-cta-text h2 { font-size: clamp(22px,2.6vw,30px); font-weight: 800; color: var(--ink); }
.seller-cta-text p { font-size: 16px; line-height: 1.6; color: var(--body); margin-top: 10px; max-width: 480px; }
.seller-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-secondary {
  padding: 15px 28px; border-radius: 12px; border: 1.5px solid var(--border-4);
  color: var(--body-2); font-size: 15px; font-weight: 700;
  transition: border-color .15s ease, color .15s ease;
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }

#site-footer { border-top: 1px solid var(--border); background: var(--surface-footer); padding-top: clamp(40px,5vw,64px); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 32px; padding-bottom: clamp(40px,5vw,64px); }
.footer-brand .wordmark { font-size: 20px; font-weight: 800; }
.footer-tagline { font-size: 14px; line-height: 1.6; color: var(--muted); margin-top: 6px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }
.footer-col a { font-size: 14px; font-weight: 500; color: var(--body); transition: color .15s ease; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px clamp(16px, 4vw, 40px);
  display: flex; justify-content: space-between; font-size: 13px; color: var(--muted-2);
  max-width: 1280px; margin: 0 auto;
}
.footer-bottom-links a:hover { color: var(--brand); }

#pricing-hero { padding: clamp(56px,8vw,96px) 0 clamp(32px,4vw,48px); text-align: center; }
#pricing-hero h1 { font-size: clamp(34px,5vw,52px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.pricing-subhead { max-width: 560px; margin: 16px auto 0; font-size: clamp(15px,1.5vw,18px); line-height: 1.55; color: var(--body); }

#pricing-plans { padding-bottom: clamp(64px,8vw,96px); }
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; }
.plan-card {
  border-radius: 18px; padding: 28px 24px; text-align: center;
  background: var(--surface); box-shadow: 0 0 0 1px var(--border-2);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.plan-name { font-size: 15px; font-weight: 700; color: var(--body-2); text-transform: uppercase; letter-spacing: .04em; }
.plan-price { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-top: 8px; }
.plan-period { font-size: 14px; color: var(--muted); }
.plan-cta { margin-top: 18px; width: 100%; text-align: center; }
.pricing-empty { text-align: center; font-size: 15px; color: var(--muted); }
