/* ============================================================
   ArtLux – about.css  ·  About Page
   ============================================================ */
/* ─── ABOUT PAGE HERO BACKGROUND ───────────────────────────── */
.page-hero__bg {
  background:
    radial-gradient(circle at 70% 32%, rgba(190, 112, 54, 0.22), transparent 34%),
    radial-gradient(circle at 22% 38%, rgba(226, 201, 130, 0.18), transparent 32%),
    linear-gradient(135deg, #21140c 0%, #120d09 52%, #070605 100%);
}

.page-hero__bg::after {
  background:
    linear-gradient(to bottom, rgba(7, 6, 5, 0.08), rgba(7, 6, 5, 0.72)),
    linear-gradient(90deg, rgba(7, 6, 5, 0.78), rgba(7, 6, 5, 0.24), rgba(7, 6, 5, 0.72));
}

/* ─── ABOUT STATS BAND ────────────────────────────────────── */
.about-stats {
  background: #111110;
}

.about-stats__row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 2.2rem 1rem;
  flex: 1;
  text-align: center;
}
.about-stat-item strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: #c9a33a;
  line-height: 1;
  display: block;
}
.about-stat-item span {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.about-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .about-stats__row { flex-wrap: wrap; }
  .about-stat-item { flex: 0 0 50%; padding: 1.4rem .5rem; }
  .about-stat-div { display: none; }
}

/* ─── FOUNDER SECTION ─────────────────────────────────────── */
.about-founder {
  padding-block: 6rem;
  background: #fff;
}

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

.founder-content .section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1.12;
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 1.1rem;
}
.founder-content .section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2.5px;
  background: var(--gold-500, #c9a33a);
  border-radius: 2px;
}

.founder-text {
  color: #5a5855;
  font-size: 1rem;
  line-height: 1.82;
  margin-bottom: 1.2rem;
}

.founder-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── SERVICES SECTION ────────────────────────────────────── */
.services-section {
  padding-block: 6rem;
  background: #f7f5f0;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: #111;
  letter-spacing: -0.4px;
  line-height: 1.12;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.1rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2.5px;
  background: var(--gold-500, #c9a33a);
  border-radius: 2px;
}
.section-title.center { text-align: center; }
.section-title.center::after { left: 50%; transform: translateX(-50%); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,163,58,.18);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .34s cubic-bezier(.22,.61,.36,1),
              box-shadow .34s, border-color .34s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  border-color: rgba(201,163,58,.4);
}

.service-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,163,58,.1);
  border: 1.5px solid rgba(201,163,58,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: #c9a33a;
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .75rem;
  letter-spacing: -0.2px;
}
.service-card p {
  color: #6a6866;
  font-size: .93rem;
  line-height: 1.74;
}

/* ─── PORTFOLIO / SIGNATURE PROJECTS ─────────────────────── */
.portfolio-section {
  padding-block: 6rem;
  background: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .34s cubic-bezier(.22,.61,.36,1),
              box-shadow .34s;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(0,0,0,.13);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.portfolio-card:hover img { transform: scale(1.04); }

.card-content {
  padding: 1.4rem 1.5rem 1.6rem;
}
.card-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .3rem;
  letter-spacing: -0.1px;
}
.card-content .location {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-600, #a88a2a);
  margin-bottom: .65rem;
}
.card-content p:last-child {
  font-size: .9rem;
  color: #6a6866;
  line-height: 1.7;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .founder-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .founder-image {
    max-width: 380px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .about-founder,
  .services-section,
  .portfolio-section {
    padding-block: 3.5rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .service-card,
  .portfolio-card .card-content {
    padding: 1.8rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .about-stats__row { flex-wrap: wrap; }
  .about-stat-item { flex: 0 0 50%; padding: 1.2rem .5rem; }
  .about-stat-div { display: none; }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
