/* ================= HERO ================= */
.well-hero {
  padding: 120px 20px 0px;
  text-align: center;
}

.well-hero-inner {
  max-width: 760px;
  margin: auto;
}

.well-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.well-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  margin: 22px 0 18px;
}

.well-hero p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ================= INTRO ================= */
.well-intro {
  padding:0 20px 120px;
  text-align: center;
}

.well-intro-inner {
  max-width: 760px;
  margin: auto;
}

.well-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ================= SECTIONS ================= */
.well-sections {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 140px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}

.well-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.well-content {
  margin-top: 18px;
}

.well-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.well-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ================= CTA ================= */
.well-cta {
  text-align: center;
  padding: 140px 20px;
  background: var(--bg-ivory);
}

.well-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 14px;
}

.well-cta p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.well-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ================= RESPONSIVE ======*/
.well-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
/* ================= MOBILE STACK FIX ================= */
@media (max-width: 768px) {

  .well-sections {
    display: block;
  }

  .well-card {
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }

  .well-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .well-content {
    padding-top: 18px;
  }

}
/* ================= REDUCE SPACE BEFORE CTA ================= */

.well-sections {
  padding-bottom: 40px;   /* reduce if currently 120+ */
}

.well-cta {
  margin-top: 0;
  padding-top: 30px;      /* clean breathing space */
}
@media (max-width: 768px) {

  .well-sections {
    padding-bottom: 30px;
  }

  .well-cta {
    padding-top: 20px;
  }

}