/* Why Choose Us — Acreways Living */

.aw-journey__wrap {
  background-color: #ffffff;
  width: 100%;
}

.aw-journey {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding: 0 1rem 4rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* ── Header ── */
.aw-journey__header {
  margin-bottom: 1.5rem;
}

.aw-journey__label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #daa520;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.75rem 0;
}

.aw-journey__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f2b4c;
  margin: 0;
}

/* ── Left: image + overlapping CTA card ── */
.aw-journey__media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 400px;
}

.aw-journey__media picture,
.aw-journey__media>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 1rem;
}

.aw-journey__media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}

.aw-journey__cta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 34%;
  z-index: 2;
  background: rgba(253, 245, 232, 0.97);
  border-style: solid;
  border-width: 15px 0 0 15px;
  border-color: #fff;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 24px 50px -30px rgba(15, 43, 76, 0.3);
  -webkit-mask: radial-gradient(circle 36px at top left, transparent 0 36px, #000 36.5px);
  mask: radial-gradient(circle 36px at top left, transparent 0 36px, #000 36.5px);
}

.aw-journey__cta h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f2b4c;
  line-height: 1.3;
  margin: 0;
}

.aw-journey__cta p {
  margin-top: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  font-weight: 400;
}

.aw-journey__btn {
  margin-top: 1.5rem;
}

/* ── Right: numbered steps ── */
.aw-journey__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.aw-journey__step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #e8edf3;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  transition: background 0.2s;
}

.aw-journey__step:hover {
  background: #dce4ee;
}

.aw-journey__num {
  flex: none;
  margin-left: 0;
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
  background: #0f2b4c;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.aw-journey__step-body {
  flex: 1;
  min-width: 0;
}

.aw-journey__step-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f2b4c;
  margin: 0 0 4px 0;
}

.aw-journey__step-body p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  font-weight: 400;
  margin: 0;
}

.aw-journey__step-icon {
  flex: none;
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(201, 147, 58, 0.4);
  display: grid;
  place-items: center;
  color: #daa520;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: border-color 0.2s;
}

.aw-journey__step:hover .aw-journey__step-icon {
  border-color: #daa520;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .aw-journey__heading {
    font-size: 34px;
  }
}

@media (min-width: 920px) {
  .aw-journey {
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
  }

  .aw-journey__num {
    margin-left: -50px;
  }

  .aw-journey__step {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .aw-journey__num {
    order: 0;
  }

  .aw-journey__step-body {
    order: 1;
  }

  .aw-journey__step-icon {
    order: 2;
  }
}

@media (max-width: 1280px) {
  .aw-journey {
    padding: 0 1.5rem 4rem;
  }
}

@media (max-width: 1024px) {
  .aw-journey {
    gap: 2.5rem;
  }
}

@media (max-width: 920px) {
  .aw-journey {
    gap: 1.25rem;
  }

  .aw-journey__media {
    min-height: 480px;
  }

  .aw-journey__cta {
    left: auto;
    width: min(380px, 90%);
  }

  /* Unwrap steps so header can reorder above image */
  .aw-journey__steps {
    display: contents;
  }

  .aw-journey__header {
    order: -2;
    text-align: center;
  }

  .aw-journey__media {
    order: -1;
  }

  .aw-journey__step {
    background: #fdf5e8;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .aw-journey__step:hover {
    background: #faecd4;
  }
}

@media (max-width: 480px) {
  .aw-journey__wrap {
    padding-top: 2.5rem;
  }

  .aw-journey {
    padding: 0 1rem 2.5rem;
  }

  .aw-journey__media {
    min-height: 420px;
  }

  .aw-journey__cta {
    left: 5%;
    right: 5%;
    bottom: 0;
    text-align: center;
    padding: 1.5rem;
    border-width: 0;
    border-radius: 1rem 1rem 0 0;
    -webkit-mask: none;
    mask: none;
  }

  .aw-journey__cta h3 {
    font-size: 18px;
  }

  .aw-journey__cta p {
    font-size: 14px;
  }

  .aw-journey__btn {
    margin-top: 1rem;
    align-self: center;
  }

  .aw-journey__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

  .aw-journey__step-body h3 {
    font-size: 18px;
    margin: 0 0 0.5rem 0;
  }

  .aw-journey__step-body p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aw-journey__btn {
    transition: none;
  }
}