/* ============================================================
   THE RAYAL CONSTRUCTIONS — About Page Styles
   ============================================================ */

/* ── Mission ── */
.mission-section {
  background: var(--cream);
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
}

.mission-inner .heading-display {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
  font-weight: 400;
}

.mission-sig {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-top: 1.5rem;
  font-weight: 500;
}

.tag.centered { text-align: center; display: block; }

/* ── Story Section ── */
.story-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-imgs {
  position: relative;
}

.about-img-stack { position: relative; }

.about-img-1 {
  width: 80%;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-left: auto;
}

.about-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-1:hover img { transform: scale(1.04); }

.about-img-2 {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 48%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.4rem 2rem;
  transition: var(--transition);
}

.value-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.value-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.value-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
}

.value-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ── Why Section ── */
.why-section { background: var(--cream); }

.why-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.why-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 3px solid var(--gold);
}

.cred-icon {
  flex-shrink: 0;
}

.cred-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
}

.credential strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.credential span {
  font-size: 0.72rem;
  color: var(--warm-grey);
  font-weight: 300;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.why-badge .badge-num {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.why-badge .badge-text {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
}

/* CTA (shared) */
.cta-band { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-band-overlay { position: absolute; inset: 0; background: rgba(20,15,10,0.78); }
.cta-band-inner { position: relative; z-index: 2; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-grid,
  .why-feature { grid-template-columns: 1fr; gap: 3rem; }
  .about-imgs { padding-bottom: 50px; }
  .why-image { padding-bottom: 30px; }
  .cta-band { padding: 100px 0; }
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .why-credentials { grid-template-columns: 1fr; }
  .about-img-2 { left: 0; }
  .why-badge { left: 0; }
  .cta-band { padding: 82px 0; }
}
