/* ── INDEX PAGE STYLES ── */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 20px 24px 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  animation: drift 12s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity: 0.5;
  animation: drift 14s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.04); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage); color: var(--sage-dk);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--sage-dk); border-radius: 50%;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.08; letter-spacing: -1.5px;
  color: var(--dark); max-width: 760px;
  margin-bottom: 22px;
  animation: fadeUp .7s .1s ease both;
  padding-top: 20px;
}
h1 em { font-style: italic; color: var(--sage-dk); }

.hero-sub {
  font-size: 1.1rem; color: var(--muted);
  max-width: 480px; font-weight: 300;
  margin-bottom: 52px;
  animation: fadeUp .7s .2s ease both;
}

/* ── SEARCH CARD ── */
.search-card {
  background: var(--white); border-radius: 22px;
  padding: 10px; display: flex; gap: 8px; flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 8px 40px rgba(13,27,75,0.10), 0 2px 8px rgba(13,27,75,0.06);
  width: 100%; max-width: 780px;
  animation: fadeUp .7s .3s ease both;
  position: relative; z-index: 100;
}
.search-field {
  display: flex; flex-direction: column;
  flex: 1; min-width: 140px;
  padding: 10px 16px;
  border-right: 1px solid #EEE;
}
.search-field:last-of-type { border-right: none; }
.search-field--wide { flex: 3; }

/* ── PROPERTY TYPE TRIGGER ── */
.property-type-trigger {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.95rem; color: var(--dark);
  cursor: pointer; user-select: none;
}
.trigger-arrow { width: 14px; height: 14px; color: var(--muted); flex-shrink: 0; }

/* ── AUTOSUGGEST DROPDOWN ── */
.search-suggest {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(13,27,75,0.13);
  z-index: 10;
}
.search-suggest.open { display: block; }
.suggest-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; cursor: pointer;
  background: var(--white);
  transition: background .15s;
}
.suggest-item:first-child { border-radius: 12px 12px 0 0; }
.suggest-item:last-child { border-radius: 0 0 12px 12px; }
.suggest-item:only-child { border-radius: 12px; }
.suggest-item:hover { background: var(--sky); }
.suggest-name { font-size: 0.9rem; color: var(--dark); }
.suggest-type {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--sage-dk);
  background: var(--sage); padding: 2px 8px; border-radius: 100px;
}
.search-field label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.search-field select,
.search-field input {
  border: none; outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--dark);
  background: transparent; cursor: pointer;
  appearance: none; width: 100%;
}
.search-field select option { color: var(--dark); }
.search-field input::placeholder { color: #bbb; }

.search-btn {
  background: var(--sage-dk); color: var(--white);
  border: none; border-radius: 14px; padding: 16px 30px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s; flex-shrink: 0;
}
.search-btn:hover { background: var(--dark); transform: translateY(-1px); }
.search-btn svg { width: 16px; height: 16px; }

.search-tags {
  width: 100%; display: flex; gap: 10px;
  flex-wrap: wrap; padding: 4px 8px 8px;
  animation: fadeUp .7s .4s ease both;
}
.search-tag {
  font-size: 0.8rem; color: var(--muted);
  cursor: pointer; transition: color .2s;
}
.search-tag:hover { color: var(--sage-dk); }
.search-tag::before { content: '↗ '; font-size: 0.7rem; }

/* ── STATS STRIP ── */
.stats {
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
  padding: 32px 24px 80px;
  animation: fadeUp .8s .5s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--dark);
}
.stat-label { font-size: 0.8rem; color: var(--muted); }

/* ── SECTIONS ── */
section { padding: 80px 48px; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-dk);
  font-weight: 500; margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15; color: var(--dark); margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.how { background: var(--sand); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; max-width: 960px;
}
.step {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(13,27,75,.09); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.1rem;
  color: var(--sage-dk); margin-bottom: 20px;
}
.step h3 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.step p  { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── FEATURED SPACES ── */
.spaces-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; max-width: 1100px;
}
.space-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); cursor: pointer;
  box-shadow: 0 2px 12px rgba(13,27,75,.07);
  transition: transform .25s, box-shadow .25s;
}
.space-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(13,27,75,.12); }
.space-img {
  height: 180px; display: flex; align-items: center;
  justify-content: center; font-size: 2.4rem;
}
.space-img.sage   { background: var(--sage); }
.space-img.blush  { background: var(--blush); }
.space-img.sky    { background: var(--sky); }
.space-img.sand   { background: var(--sand); }
.space-body { padding: 20px; }
.space-badge {
  display: inline-block; font-size: 0.7rem;
  background: var(--sage); color: var(--sage-dk);
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 10px; font-weight: 500;
}
.space-name { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 4px; }
.space-loc  { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.space-price { font-size: 0.95rem; font-weight: 500; color: var(--sage-dk); }
.space-price span { font-size: 0.75rem; font-weight: 400; color: var(--muted); }

/* ── SPACE TYPES ── */
.types { background: var(--cream); }
.type-pills { display: flex; flex-wrap: wrap; gap: 14px; max-width: 800px; }
.type-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--sage);
  border-radius: 100px; padding: 12px 24px;
  font-size: 0.9rem; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.type-pill:hover { background: var(--sage); border-color: var(--sage); }
.type-pill .icon { font-size: 1.1rem; }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; gap: 64px; flex-wrap: wrap;
}
.testimonial-section .section-label { color: var(--sage-mid); }
.testimonial-section .section-title { color: var(--white); margin-bottom: 0; }
.testimonial-card {
  flex: 1; min-width: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px;
}
.stars { color: #F5C97A; font-size: 1rem; margin-bottom: 16px; }
blockquote {
  font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px;
  font-style: italic; color: #C8D8FF;
}
.author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; font-weight: 600; color: var(--sage-dk);
}
.author-name { font-weight: 500; font-size: 0.875rem; }
.author-role { font-size: 0.775rem; color: var(--sage-mid); }

/* ── CTA BAND ── */
.cta-band { background: var(--sage); text-align: center; padding: 72px 24px; }
.cta-band .section-label { color: var(--sage-dk); }
.cta-band .section-title { margin-bottom: 28px; max-width: 520px; margin-inline: auto; }
.cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER (full) ── */
.prolease-footer { padding: 48px 48px 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 240px; }
.footer-logo { font-size: 1.55rem; display: block; margin-bottom: 12px; }
.prolease-footer h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cream); margin-bottom: 16px;
}
.footer-bottom { padding-top: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .search-card { flex-direction: column; border-radius: 18px; }
  .search-field { border-right: none; border-bottom: 1px solid #EEE; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-section { flex-direction: column; gap: 32px; }
}


.small_title{
  text-align: left;
}
