/* ---------- About hero ---------- */
.about-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #4a4a42;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.15) 100%);
}

.about-hero-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 42px;
  letter-spacing: 0.14em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-divider {
  height: 26px;
  width: 100%;
  background: #efe9dc;
}

/* ---------- About content ---------- */
.about-content {
  background: #a49c88;
  color: #2c2a24;
  padding: 130px 0;
}

.about-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 90px 160px;
}

.about-section:last-child { padding-bottom: 0; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #55523f;
  margin-bottom: 26px;
}

/* WHAT DO WE DO */
.what-we-do {
  display: flex;
  align-items: center;
  gap: 80px;
}

.what-we-do .text-block { flex: 0 0 42%; }

.what-we-do h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}

.what-we-do p,
.mood-lifestyle p,
.your-happiness p {
  font-size: 15px;
  line-height: 1.9;
  color: #4a4737;
}

.what-we-do .image-frame { flex: 1; }

.image-frame {
  background: #f4f1e6;
  padding: 14px;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* YOUR MOOD / YOUR LIFESTYLE staggered grid */
.mood-lifestyle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.mood-lifestyle .grid-col--right {
  margin-top: 170px;
}

.mood-lifestyle .grid-col img {
  display: block;
  width: 100%;
  height: auto;
}

.mood-lifestyle .label-block {
  margin-top: 60px;
  max-width: 380px;
}

.mood-lifestyle .label-block h3 {
  font-family: 'Jost', sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 22px;
}

.full-image {
  margin-top: 100px;
}

.full-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* YOUR HAPPINESS */
.your-happiness {
  text-align: center;
}

.your-happiness h2 {
  font-family: 'Jost', sans-serif;
  font-size: 40px;
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-bottom: 26px;
}

.your-happiness p {
  margin-bottom: 50px;
}

.map-embed {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-hero {
    height: auto;
    min-height: 0;
    padding-top: 56.25%;
    display: block;
    background-size: contain;
    background-position: top center;
  }
  .about-hero-title {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 16px;
    font-size: 22px;
  }

  .about-content { padding: 80px 0; }
  .about-section { padding: 0 24px 100px; }

  .what-we-do { flex-direction: column; gap: 40px; }
  .what-we-do .text-block { flex: none; }
  .what-we-do h2 { font-size: 26px; }

  .mood-lifestyle { grid-template-columns: 1fr; gap: 40px; }
  .mood-lifestyle .grid-col--right { margin-top: 0; }

  .your-happiness h2 { font-size: 28px; }
  .map-embed { height: 320px; }
}