/* DOVE SIAMO / MAPPA STATICA */
.location-section {
  padding: 0 0 5rem;
  background: var(--green-soft);
}

.location-card {
  background: var(--white);
  border: 1px solid rgba(22, 56, 29, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.location-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2rem 1.5rem;
}

.location-copy h2 {
  margin: 0 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.05;
  color: var(--green-dark);
}

.location-copy p {
  margin: 0;
  color: var(--text-soft);
}

.location-address {
  font-style: normal;
  font-weight: 700;
  color: var(--green-dark);
  text-align: right;
  max-width: 28rem;
}

.map-consent {
  min-height: 430px;
  background: var(--ivory) url("../images/mappa-cappadocia.svg") center / cover no-repeat;
  border-top: 1px solid rgba(22, 56, 29, 0.08);
  border-bottom: 1px solid rgba(22, 56, 29, 0.08);
}

.map-consent-inner {
  display: none;
}

.map-frame {
  display: none;
}

.map-actions {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 2rem 1.5rem;
  background: var(--white);
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(22, 56, 29, 0.18);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 700;
  background: var(--ivory);
}

.map-link:hover {
  background: var(--green-soft);
}

@media (max-width: 760px) {
  .location-copy {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem 1.25rem 1rem;
  }

  .location-address {
    text-align: left;
  }

  .map-consent {
    min-height: 320px;
    background-size: cover;
    background-position: 58% center;
  }

  .map-actions {
    justify-content: stretch;
    padding: 1rem 1.25rem 1.25rem;
  }

  .map-link {
    width: 100%;
  }
}
