.twostars-about-location {
  width: 100%;
  padding: var(--spacing-section) 5%;
  background: var(--desert-cream);
}

.twostars-about-location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 6rem;
  align-items: center;
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.twostars-about-location__title {
  margin: 0;
  color: var(--color-deep-night);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
}

.twostars-about-location__body {
  margin-top: 2rem;
}

.twostars-about-location__body p {
  margin: 0 0 1.4rem;
  color: rgba(16, 28, 46, 0.82);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.82;
}

.twostars-about-location__body p:last-child {
  margin-bottom: 0;
}

.twostars-about-location__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
  margin-top: 2.5rem;
}

.twostars-about-location__highlight {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: var(--navy-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.twostars-about-location__highlight-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(95, 158, 168, 0.12);
  color: var(--coastal-cyan);
}

.twostars-about-location__highlight-svg {
  width: 1.05rem;
  height: 1.05rem;
}

.twostars-about-location__visual-frame {
  position: relative;
  min-height: 37rem;
}

.twostars-about-location__image {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.twostars-about-location__mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.85fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 1.1rem;
  min-height: 37rem;
}

.twostars-about-location__tile {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--color-white);
  box-shadow: 0 24px 70px rgba(16, 28, 46, 0.14);
}

.twostars-about-location__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 34, 0) 40%, rgba(10, 20, 34, 0.18) 100%);
  pointer-events: none;
}

.twostars-about-location__tile--large {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.twostars-about-location__tile--stack-top {
  grid-column: 2;
  grid-row: 1;
  transform: translateY(1rem);
}

.twostars-about-location__tile--stack-bottom {
  grid-column: 2;
  grid-row: 2;
  transform: translateY(-0.5rem);
}

.twostars-about-location__image--placeholder {
  background:
    radial-gradient(circle at 24% 20%, rgba(201, 163, 123, 0.34), transparent 28%),
    linear-gradient(135deg, #efe3d3 0%, #b89368 100%);
}

.twostars-about-location__embed,
.twostars-about-location__embed iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}

.twostars-about-location__visual {
  position: relative;
}

.twostars-about-location__accent {
  position: absolute;
  right: -1rem;
  bottom: 1rem;
  z-index: -1;
  width: 70%;
  height: 60%;
  border: 1px solid rgba(201, 163, 123, 0.82);
  border-radius: 2rem;
}

@media (max-width: 968px) {
  .twostars-about-location {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .twostars-about-location__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .twostars-about-location__visual-frame,
  .twostars-about-location__mosaic {
    min-height: 30rem;
  }

  .twostars-about-location__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .twostars-about-location {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .twostars-about-location__highlights {
    grid-template-columns: 1fr;
  }

  .twostars-about-location__visual-frame,
  .twostars-about-location__mosaic {
    min-height: auto;
  }

  .twostars-about-location__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .twostars-about-location__tile {
    min-height: 12rem;
  }

  .twostars-about-location__tile--large,
  .twostars-about-location__tile--stack-top,
  .twostars-about-location__tile--stack-bottom {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }

  .twostars-about-location__accent {
    display: none;
  }
}
