:root {
  --green: #24483a;
  --accent: #b88447;
  --ink: #17201b;
  --muted: #d6ded8;
  --paper: #f6f4ee;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #101612;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.showcase {
  display: grid;
  width: 100vw;
  height: 100vh;
  grid-template-columns: 70fr 30fr;
  background: #101612;
}

.media-stage {
  position: relative;
  overflow: hidden;
  background: #0c110e;
}

.media-stage img,
.media-stage video,
.media-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #0c110e;
}

.media-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset -70px 0 90px rgba(16, 22, 18, 0.38);
  pointer-events: none;
}

.property-panel {
  display: grid;
  align-content: center;
  gap: 1.35vh;
  padding: 3vh 2.35vw;
  background: linear-gradient(180deg, #24483a, #18261f);
  border-left: 8px solid var(--accent);
}

.panel-logo {
  width: min(100%, 300px);
  height: auto;
  padding: 10px;
  background: var(--paper);
  border-radius: 8px;
}

.panel-status {
  justify-self: start;
  padding: 8px 12px;
  background: var(--accent);
  border-radius: 6px;
  color: #fff;
  font-size: clamp(14px, 0.95vw, 19px);
  font-weight: 900;
  text-transform: uppercase;
}

.property-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.45vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

.panel-location {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.25vw, 26px);
  font-weight: 800;
}

.panel-price {
  display: block;
  color: #fff;
  font-size: clamp(28px, 2.2vw, 46px);
  font-weight: 900;
}

.panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-meta span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #fff;
  font-size: clamp(14px, 0.95vw, 19px);
  font-weight: 900;
}

.panel-description {
  overflow: visible;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 0.98vw, 22px);
  line-height: 1.34;
}

.panel-contact {
  display: grid;
  gap: 4px;
  margin-top: 0.7vh;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.panel-contact span,
.panel-contact small {
  color: var(--muted);
  font-size: clamp(13px, 0.85vw, 17px);
  font-weight: 800;
}

.panel-contact strong {
  font-size: clamp(24px, 1.9vw, 40px);
  font-weight: 900;
}

.empty-showcase {
  display: grid;
  height: 100vh;
  place-items: center;
  padding: 5vw;
  color: #fff;
  font-size: clamp(28px, 4vw, 72px);
  text-align: center;
}

@media (max-aspect-ratio: 4 / 3) {
  .showcase {
    grid-template-columns: 1fr;
    grid-template-rows: 64fr 36fr;
  }

  .property-panel {
    grid-template-columns: 180px 1fr;
    align-content: center;
    border-top: 8px solid var(--accent);
    border-left: 0;
  }

  .panel-logo {
    grid-row: span 3;
  }

  .panel-description,
  .panel-contact {
    display: none;
  }
}
