/* ============================================================
   HOME PAGE — PREMIUM LUXURY STYLE (OPTION A)
   Split Hero + Profile Card | Mobile-friendly
============================================================ */

/* Ensure page has signature background like other pages */
.page-home {
  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 LAYOUT
============================================================ */

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Mobile = center text + stacked layout */
@media (max-width: 900px) {
  .hero {
    padding: 120px 0 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-points,
  .hero-cta,
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Eye brow tagline */
.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Main title */
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* Highlight gradient text */
.hero-highlight {
  background: linear-gradient(90deg, #ffe5ba, #f0b76b, #ffdf9c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Supporting subtitle */
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 26px;
}

/* Bullet pill list */
.hero-points {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 520px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  border-radius: 999px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .hero-cta {
    justify-content: center;
  }
}

.hero-note {
  font-size: 0.85rem;
  margin-top: 14px;
  color: var(--text-muted);
}

/* ============================================================
   PROFILE CARD
============================================================ */

.hero-card {
  background: radial-gradient(circle at top left, rgba(240, 183, 107, 0.16), #050816 55%);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  position: relative;
}

.profile {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.profile-photo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 28px rgba(0,0,0,0.6);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-card {
    max-width: 420px;
    margin: auto;
    text-align: center;
  }

  .profile {
    justify-content: center;
  }
}

/* Taglines */
.tagline-small {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 12px 0 16px;
  line-height: 1.5;
}

.reg-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.reg-line strong {
  color: #fff;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  padding: 6px 12px;
  background: rgba(240,183,107,0.12);
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(240,183,107,0.4);
}

/* ============================================================
   PREVIEW CARDS (About | Services | Process | FAQs)
============================================================ */

.preview-card {
  padding: 26px 24px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(240, 183, 107, 0.12),
    rgba(5, 8, 22, 0.96)
  );
  border: 1px solid rgba(240, 183, 107, 0.45);
  box-shadow: 0 20px 45px rgba(0,0,0,0.75);
  transition: 0.3s ease-out;
}

.preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,183,107,0.85);
  box-shadow: 0 26px 55px rgba(0,0,0,0.9);
}

/* Icon circle */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, #ffe6c0, #f0b76b, #b9782f);
  font-weight: 700;
  color: #1b1406;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
  margin-bottom: 14px;
}
