/* ==========================================================================
   Shuvatara — Modern About Section
   Scoped under `sh-about` so it never collides with the legacy theme CSS
   (the same classes power the Contact section further down the page).
   ========================================================================== */

.sh-about {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: #fbf9f5;
}

.sh-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: center;
}

/* ---------------------------------- Media ---------------------------------- */
.sh-about__media {
  position: relative;
}

.sh-about__media::before {
  content: '';
  position: absolute;
  top: -32px;
  left: -32px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 106, .22) 0%, rgba(212, 175, 106, 0) 70%);
  z-index: 0;
}

.sh-about__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -20px rgba(11, 20, 32, .3);
}

.sh-about__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sh-about__float {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 46%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid #fbf9f5;
  box-shadow: 0 20px 40px -15px rgba(11, 20, 32, .35);
  z-index: 1;
}

.sh-about__float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sh-about__badge {
  position: absolute;
  left: -24px;
  bottom: 32px;
  z-index: 2;
  background: var(--sh-navy, #0b1420);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 34px -14px rgba(11, 20, 32, .55);
}

.sh-about__badge i {
  font-size: 26px;
  color: var(--sh-gold, #d4af6a);
}

.sh-about__badge span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}

/* --------------------------------- Content --------------------------------- */
.sh-about__content { position: relative; z-index: 1; }

.sh-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-gold, #d4af6a);
  margin-bottom: 14px;
}

.sh-about__eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--sh-gold, #d4af6a);
}

.sh-about__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 14px;
}

.sh-about__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #8a7451;
  margin-bottom: 18px;
}

.sh-about__desc {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: #5c6470;
  margin-bottom: 36px;
}

.sh-about__desc p:last-child { margin-bottom: 0; }

.sh-about__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sh-about__feature {
  padding: 22px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(11, 20, 32, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sh-about__feature:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 40px -22px rgba(11, 20, 32, .35);
}

.sh-about__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212, 175, 106, .14);
  color: var(--sh-gold, #d4af6a);
  font-size: 20px;
  margin-bottom: 14px;
}

.sh-about__feature h4 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 6px;
}

.sh-about__feature p {
  font-family: 'Lato', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #7c8492;
  margin: 0;
}

/* --------------------------------- Responsive --------------------------------- */
@media (max-width: 991px) {
  .sh-about__grid { grid-template-columns: 1fr; gap: 48px; }
  .sh-about__media { max-width: 420px; margin: 0 auto; }
  .sh-about__badge { display: none; }
}

@media (max-width: 767px) {
  .sh-about { padding: 80px 0; }
  .sh-about__features { grid-template-columns: 1fr; }
  .sh-about__float { right: -16px; bottom: -16px; }
}
