@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700&display=swap');

.alma-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.alma-overlay.alma-visible { opacity: 1; }
.alma-popup {
  width: 100%;
  max-width: 420px;
  border-radius: 3px;
  overflow: hidden;
  transform: translateY(14px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  font-family: Helvetica, Arial, sans-serif;
}
.alma-overlay.alma-visible .alma-popup {
  transform: translateY(0);
  opacity: 1;
}
.alma-header {
  padding: 28px 28px 22px;
  position: relative;
  overflow: hidden;
}
.alma-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  z-index: 2;
  font-family: Helvetica, Arial, sans-serif;
}
.alma-eyebrow {
  font-family: 'Garage Gothic', 'Barlow Condensed', Impact, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.alma-headline {
  font-family: 'Garage Gothic', 'Barlow Condensed', Impact, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.alma-subline {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1.5;
}
.alma-body { padding: 20px 28px 24px; }
.alma-property-label {
  font-family: 'Garage Gothic', 'Barlow Condensed', Impact, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.alma-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.alma-row:last-child { border-bottom: none; }
.alma-type {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.alma-offer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.alma-months {
  font-family: 'Garage Gothic', 'Barlow Condensed', Impact, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.alma-value {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.75;
}
.alma-footer {
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.alma-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Garage Gothic', 'Barlow Condensed', Impact, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 20px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.alma-btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  padding: 2px 0;
}