/* =========================
   ABOUT PAGE – LUXURY STYLE
========================= */

.page-about {
  background: radial-gradient(circle at top left, rgba(240, 183, 107, 0.06), transparent 55%),
              radial-gradient(circle at bottom right, rgba(240, 183, 107, 0.04), transparent 55%),
              var(--bg-dark);
  color: #f7f7ff;
}

/* Hero */
.page-about .hero-premium {
  padding: 80px 0 52px;
  background:
    radial-gradient(circle at top left, rgba(240, 183, 107, 0.18), transparent 55%),
    linear-gradient(135deg, #050816 0%, #02030a 55%, #050816 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-about .hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.page-about .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(240, 183, 107, 0.08);
  border: 1px solid rgba(240, 183, 107, 0.4);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.page-about .hero-title-lg {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.page-about .hero-lead {
  max-width: 640px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(232, 235, 245, 0.9);
}

/* Section */
.page-about .section-padded {
  padding: 72px 0 40px;
}

.page-about .about-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-about .about-section .section-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(226, 230, 245, 0.9);
  max-width: 540px;
}

/* Grid layout */
.page-about .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px 64px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .page-about .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Cards */
.page-about .about-card {
  margin-top: 26px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(7, 10, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.page-about .about-card-primary {
  border-image: linear-gradient(135deg, #c88832, #f0b76b, #ffcf81) 1;
}

.page-about .about-card-secondary {
  background: linear-gradient(145deg,
              rgba(240, 183, 107, 0.08),
              rgba(5, 8, 22, 0.96));
  border-color: rgba(240, 183, 107, 0.45);
}

.page-about .about-card-intro {
  font-size: 0.9rem;
  color: rgba(214, 220, 240, 0.9);
  margin: 8px 0 12px;
}

/* Bullets */
.page-about .styled-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.page-about .styled-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: rgba(226, 230, 245, 0.95);
  margin-bottom: 8px;
}

.page-about .styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c88832, #f0b76b, #ffcf81);
  box-shadow: 0 0 0 4px rgba(240, 183, 107, 0.16);
}

/* =========================================
   CTA SECTION — CONSISTENT WITH SERVICES
========================================= */

.page-about .section-cta-gold {
  padding: 72px 0 78px;
  margin-top: 80px;
  background:
    radial-gradient(circle at top, rgba(240, 183, 107, 0.18), transparent 60%),
    linear-gradient(135deg, #101523 0%, #050816 60%, #03040b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-about .cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.page-about .cta-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.page-about .cta-subtitle {
  font-size: 0.95rem;
  color: rgba(221, 226, 240, 0.9);
  margin-bottom: 24px;
}

/* CTA Button */
.page-about .btn-primary.btn-large {
  padding: 12px 30px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  background-image: linear-gradient(135deg, #c88832, #f0b76b, #ffcf81);
  color: #1a1206;
  border: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
  transition: 0.25s ease;
}

.page-about .btn-primary.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.85);
}




/* Footer */
.page-about .disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 32px;
}

.page-about .disclaimer-text {
  font-size: 0.8rem;
  color: rgba(210, 216, 235, 0.9);
}
