/* =========================================================
   LE BRICOLEUR NANTAIS - Page À propos
   ========================================================= */

/* --- Hero À propos --- */
.about-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background: var(--color-paper);
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 115, 51, 0.05), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(184, 115, 51, 0.04), transparent 50%);
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 968px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero { padding: 8rem 0 3rem; }
}

.about-hero-content {
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}

.about-hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--color-copper);
  font-weight: 300;
}

.about-hero-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-graphite);
  margin-top: 1.5rem;
}

/* --- Carte d'identité typographique (en attendant la photo) --- */
.identity-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(145deg, var(--color-ink), #2a2a2a);
  color: var(--color-paper);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  animation: fadeIn 1.2s var(--ease-out) 0.4s both;
}

.identity-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18), transparent 70%);
  pointer-events: none;
}

.identity-card-inner {
  position: absolute;
  inset: 0;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.identity-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.identity-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-copper-soft);
  border: 1px solid rgba(212, 145, 90, 0.4);
  padding: 0.4rem 0.75rem;
}

.identity-card-meta {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(248, 246, 242, 0.5);
  line-height: 1.8;
}

.identity-card-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.identity-card-name .first { display: block; opacity: 0.4; }
.identity-card-name .last { display: block; color: var(--color-copper-soft); font-style: italic; }

.identity-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(248, 246, 242, 0.15);
  padding-top: 1.5rem;
}

.identity-card-role {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(248, 246, 242, 0.85);
  max-width: 220px;
  line-height: 1.4;
}

.identity-card-logo {
  width: 50px;
  height: 50px;
  background: rgba(248, 246, 242, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.identity-card-logo svg { width: 24px; height: 24px; color: var(--color-copper-soft); }

/* --- Histoire (mon parcours) --- */
.story-section {
  background: var(--color-paper);
}

.story-content {
  max-width: 760px;
  margin: 0 auto;
}

.story-content .eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 1.5rem;
}

.story-content h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-ink-soft);
  margin-bottom: 1.5rem;
}

.story-content p.lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-graphite);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.story-content strong {
  color: var(--color-ink);
  font-weight: 500;
}

.story-pull {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-copper);
  font-weight: 400;
}

/* --- Valeurs (4 piliers visuels) --- */
.values-section {
  background: var(--color-paper-warm);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

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

.value-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-paper);
  border-radius: 50%;
}

.value-card-icon svg { width: 24px; height: 24px; color: var(--color-copper); }

.value-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.value-card p {
  color: var(--color-graphite);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* --- Chiffres clés --- */
.facts-section {
  background: var(--color-ink);
  color: var(--color-paper);
  padding: 5rem 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fact-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--color-copper-soft);
  line-height: 1;
}

.fact-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.7);
  font-weight: 400;
}

/* --- Mot pour les clients --- */
.commitment-section {
  background: var(--color-paper);
}

.commitment-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.commitment-inner h2 { margin-bottom: 2rem; }

.commitment-list {
  margin: 3rem 0;
  display: grid;
  gap: 1.25rem;
  text-align: left;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.commitment-item:last-child { border-bottom: none; }

.commitment-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-copper);
  flex-shrink: 0;
  margin-top: 2px;
}

.commitment-item-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink-soft);
}

.commitment-item-text strong {
  color: var(--color-ink);
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.25rem;
}
