/* ============================================================
   ABOUT.CSS — Lumière Luxury Store
   About Hero · Brand Story · Values · Founder · CTA
   ============================================================ */

/* ── ABOUT HERO ── */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--espresso);
}

.about-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(201,150,63,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(139,105,20,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(26,15,10,0.8) 0%, transparent 70%);
  animation: meshShift 10s ease-in-out infinite alternate;
}

.about-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite;
}

.about-hero-orb--1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.about-hero-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--brass);
  bottom: -50px;
  right: 10%;
  animation-delay: 3s;
}

.about-hero-orb--3 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  top: 40%;
  right: 25%;
  animation-delay: 6s;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 0 2rem;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}

.about-hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.about-hero-sub {
  font-size: 1rem;
  color: rgba(250,246,238,0.65);
  font-weight: 300;
  animation: fadeUp 0.8s var(--ease) 0.55s both;
}

.about-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1s forwards;
}

.about-hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.45);
}

.about-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── BRAND STORY ── */
.brand-story {
  padding: var(--section-pad);
  background: var(--ivory);
}

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

.story-body {
  font-size: 0.95rem;
  color: var(--sand);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.brand-story-text .btn {
  margin-top: 1rem;
}

.brand-story-visual {
  position: relative;
}

.story-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.story-img-wrap:hover .story-img {
  transform: scale(1.04);
}

.story-img-accent {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  pointer-events: none;
}

.story-stat-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--espresso);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ── VALUES ── */
.values {
  padding: var(--section-pad);
  background: var(--parchment);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(44,24,16,0.08);
  border-color: var(--gold);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--parchment);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-card:hover .value-icon {
  background: var(--gold);
  color: var(--cream);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--mahogany);
  margin-bottom: 0.6rem;
}

.value-text {
  font-size: 0.875rem;
  color: var(--sand);
  line-height: 1.75;
}

/* ── FOUNDER ── */
.founder {
  padding: var(--section-pad);
  background: var(--ivory);
}

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

.founder-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
}

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

.founder-body {
  font-size: 0.95rem;
  color: var(--sand);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.founder-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.signature-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--mahogany);
}

.signature-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── ABOUT CTA ── */
.about-cta {
  position: relative;
  padding: 8rem 2rem;
  background: var(--espresso);
  overflow: hidden;
  text-align: center;
}

.about-cta-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,150,63,0.1) 0%, transparent 70%);
  animation: glowPulse 5s ease-in-out infinite;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
}

.about-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.about-cta-sub {
  font-size: 1rem;
  color: var(--sand);
  margin-bottom: 2.5rem;
}

.about-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes meshShift {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .brand-story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-stat-card {
    position: static;
    display: inline-flex;
    margin-top: 1.5rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-img-wrap {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
}