/* ── Showcase Hero ── */
.showcase-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}
@media (min-width: 430px) { .showcase-hero { height: 560px; } }
@media (min-width: 768px) { .showcase-hero { height: 600px; } }

.showcase-hero-bg {
  position: absolute;
  inset: 0;
}
.showcase-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.showcase-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.3) 50%, rgba(10,22,40,0.1) 100%);
}
.showcase-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 28px;
  z-index: 1;
}
@media (min-width: 768px) { .showcase-hero-content { padding: 80px 60px; } }

.showcase-hero-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.showcase-hero-title {
  font-size: clamp(28px, 6vw, 52px);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.showcase-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 480px;
}
@media (min-width: 430px) { .showcase-hero-sub { font-size: 17px; } }

/* ── Properties Grid ── */
.properties-section {
  padding: 60px 24px;
  background: var(--bg);
}
.properties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
}
@media (min-width: 768px) {
  .properties-section { padding: 80px 48px; }
  .properties-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
}
@media (min-width: 1280px) {
  .properties-section { padding: 80px 60px; }
  .properties-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Property Card ── */
.property-card {
  background: var(--fg);
  border: none;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.25);
}
.property-card::after { display: none; }

/* Feature tag pill */
.property-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.property-card:hover .property-tag {
  background: rgba(201,169,110,0.2);
  border-color: rgba(201,169,110,0.55);
}

/* Image layout: full-width single image */
.property-images {
  display: block;
  position: relative;
  overflow: hidden;
}
.property-img-main {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 430px) { .property-img-main { height: 340px; } }
@media (min-width: 768px) { .property-img-main { height: 420px; } }
.property-card:hover .property-img-main { transform: scale(1.04); }
.property-img-row { display: none; }

/* Card body — dark bg, white text, gold price */
.property-body {
  padding: 24px 20px 28px;
  background: var(--fg);
}
.property-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
  justify-content: center;
}
@media (min-width: 430px) { .property-location { justify-content: flex-start; } }

.property-location-icon {
  font-size: 7px;
  color: var(--gold);
  line-height: 1;
}
.property-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  text-align: center;
}
@media (min-width: 430px) { .property-name { text-align: left; } }
.property-address { display: none; }
.property-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  text-align: center;
}
@media (min-width: 430px) { .property-price { text-align: left; } }
.property-desc { display: none; }
.property-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 430px) { .property-stats { justify-content: flex-start; } }
.property-stat { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; }
.property-stat-sep { color: rgba(255,255,255,0.25); font-size: 12px; }
.property-inquire-btn {
  display: inline-block;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--fg);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.property-inquire-btn:hover { background: var(--gold-dark); }

/* ── Showcase CTA ── */
.showcase-cta {
  padding: 80px 24px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  text-align: center;
}
@media (min-width: 768px) { .showcase-cta { padding: 100px 60px; } }
.showcase-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.showcase-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
}
.showcase-cta-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.showcase-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--fg);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--fg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }