/* ============================================
   a-propos.css — Page À propos (éditorial / magazine)
   ============================================ */

/* --- Bandeau éditorial friperie + fondatrice (fond texture continu) --- */

.about-editorial-band {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-4xl) var(--space-xl);
  overflow: hidden;
  background-color: var(--silk-cream);
  background-image: var(--emotion-bg-image);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  isolation: isolate;
}

.about-editorial-band .about-friperie {
  padding: 0 0 var(--space-3xl);
  background-color: transparent;
  background-image: none;
  isolation: auto;
}

.about-editorial-band .about-renee {
  padding: 0;
  background-color: transparent;
  background-image: none;
  isolation: auto;
}

/* --- Section friperie (bandeau éditorial trois colonnes) --- */

.about-friperie {
  position: relative;
  z-index: 1;
  --about-friperie-gallery-width: clamp(10rem, 16vw, 15.5rem);
  width: 100%;
}

.about-friperie-inner {
  display: grid;
  grid-template-columns: minmax(5.5rem, 8rem) minmax(0, 1fr);
  gap: var(--space-2xl) var(--space-3xl);
  align-items: stretch;
  width: 100%;
  max-width: var(--max-width-site);
  margin: 0 auto;
}

.about-friperie-main {
  position: relative;
  min-width: 0;
  padding-right: calc(var(--about-friperie-gallery-width) + var(--space-3xl));
}

.about-friperie-rail {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  min-height: 12rem;
  padding: var(--space-lg) var(--space-sm);
  border-radius: var(--radius-md);
  background-color: color-mix(in srgb, var(--color-ivory) 28%, transparent);
}

.about-friperie-rail-title {
  position: relative;
  margin: 0;
  font-family: "TAN Pearl", "Times New Roman", serif;
  font-size: clamp(1.875rem, 3.25vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-purple);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-shadow:
    0 0 1px color-mix(in srgb, var(--color-ivory) 95%, transparent),
    0 0 20px color-mix(in srgb, var(--color-ivory) 55%, transparent);
}

.about-friperie-sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.about-friperie-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  min-width: 0;
}

.about-friperie-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.about-friperie-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: 0;
}

.about-friperie-kicker {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-friperie-text {
  margin: 0;
  max-width: 36rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-charcoal);
}

.about-friperie-gallery {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  width: var(--about-friperie-gallery-width);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  min-width: 0;
}

.about-friperie-photo {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-friperie-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-friperie-photo-overlay);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-friperie-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform var(--transition-base);
}

.about-friperie-photo:hover .about-friperie-img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .about-friperie-inner {
    grid-template-columns: minmax(3.5rem, 5rem) minmax(0, 1fr);
  }

  .about-friperie-rail {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    min-height: unset;
    padding-top: var(--space-sm);
  }

  .about-friperie-main {
    grid-column: 2;
    grid-row: 1;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .about-friperie-gallery {
    display: flex;
    position: static;
    z-index: 0;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    gap: var(--space-lg);
  }

  .about-friperie-photo {
    flex: 1 1 calc(33.333% - var(--space-lg));
    min-width: min(100%, 12rem);
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .about-editorial-band {
    padding: var(--space-3xl) var(--space-lg);
  }

  .about-editorial-band .about-friperie {
    padding-bottom: var(--space-2xl);
  }

  .about-friperie-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
  }

  .about-friperie-main {
    align-items: center;
    width: 100%;
    padding-right: 0;
    gap: var(--space-2xl);
  }

  .about-friperie-copy {
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .about-friperie-block {
    align-items: center;
  }

  .about-friperie-kicker {
    text-align: center;
  }

  .about-friperie-text {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .about-friperie-rail {
    align-self: auto;
    width: 100%;
    min-height: unset;
    padding: var(--space-md) var(--space-lg);
    background-color: color-mix(in srgb, var(--color-ivory) 35%, transparent);
  }

  .about-friperie-rail-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    text-align: center;
    text-shadow:
      0 1px 0 color-mix(in srgb, var(--color-ivory) 90%, transparent),
      0 0 18px color-mix(in srgb, var(--color-ivory) 45%, transparent);
  }

  .about-friperie-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    gap: var(--space-sm);
    width: 100%;
  }

  .about-friperie-photo {
    width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 480px) {
  .about-editorial-band {
    padding: var(--space-2xl) var(--space-md);
  }

  .about-friperie-blocks {
    gap: var(--space-xl);
  }

  .about-friperie-gallery {
    gap: var(--space-xs);
  }
}

/* --- Section Renée-Claude (miroir friperie : images à gauche, rail à droite) --- */

.about-renee {
  position: relative;
  z-index: 1;
  --about-renee-gallery-width: clamp(10rem, 16vw, 15.5rem);
  width: 100%;
}

.about-renee-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(5.5rem, 8rem);
  gap: var(--space-2xl) var(--space-3xl);
  align-items: stretch;
  width: 100%;
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding-top: var(--space-3xl);
}

.about-renee-main {
  position: relative;
  grid-column: 1;
  min-width: 0;
  padding-left: calc(var(--about-renee-gallery-width) + var(--space-3xl));
}

.about-renee-rail {
  position: relative;
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  min-height: 12rem;
  padding: var(--space-lg) var(--space-sm);
  border-radius: var(--radius-md);
  background-color: color-mix(in srgb, var(--color-ivory) 28%, transparent);
}

.about-renee-rail-title {
  position: relative;
  margin: 0;
  font-family: "TAN Pearl", "Times New Roman", serif;
  font-size: clamp(1.875rem, 3.25vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-purple);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: none;
  text-shadow:
    0 0 1px color-mix(in srgb, var(--color-ivory) 95%, transparent),
    0 0 20px color-mix(in srgb, var(--color-ivory) 55%, transparent);
}

.about-renee-sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.about-renee-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: flex-end;
  min-width: 0;
}

.about-renee-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  width: 100%;
  text-align: right;
}

.about-renee-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-end;
  margin: 0;
}

.about-renee-kicker {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

.about-renee-text {
  margin: 0;
  max-width: 36rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-charcoal);
  text-align: right;
}

.about-renee-gallery {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  display: grid;
  width: var(--about-renee-gallery-width);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  min-width: 0;
}

.about-renee-photo {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-renee-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-friperie-photo-overlay);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-renee-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform var(--transition-base);
}

.about-renee-photo:hover .about-renee-img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .about-renee-inner {
    grid-template-columns: minmax(0, 1fr) minmax(3.5rem, 5rem);
  }

  .about-renee-main {
    grid-column: 1;
    grid-row: 1;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .about-renee-rail {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    min-height: unset;
    padding-top: var(--space-sm);
  }

  .about-renee-gallery {
    display: flex;
    position: static;
    z-index: 0;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    gap: var(--space-lg);
  }

  .about-renee-photo {
    flex: 1 1 calc(33.333% - var(--space-lg));
    min-width: min(100%, 12rem);
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .about-renee-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    padding-top: 0;
  }

  .about-renee-main {
    align-items: center;
    width: 100%;
    padding-left: 0;
    gap: var(--space-2xl);
    order: 1;
  }

  .about-renee-copy {
    align-items: center;
    width: 100%;
  }

  .about-renee-blocks,
  .about-renee-block,
  .about-renee-kicker,
  .about-renee-text {
    align-items: center;
    text-align: center;
  }

  .about-renee-text {
    margin-right: auto;
    margin-left: auto;
  }

  .about-renee-rail {
    align-self: auto;
    width: 100%;
    min-height: unset;
    padding: var(--space-sm) var(--space-md);
    background-color: color-mix(in srgb, var(--color-ivory) 35%, transparent);
    order: -1;
  }

  .about-renee-rail-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    text-align: center;
    text-shadow:
      0 1px 0 color-mix(in srgb, var(--color-ivory) 90%, transparent),
      0 0 18px color-mix(in srgb, var(--color-ivory) 45%, transparent);
  }

  .about-renee-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    gap: var(--space-sm);
    width: 100%;
  }

  .about-renee-photo {
    width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 480px) {
  .about-renee-inner {
    gap: var(--space-xl);
    padding-top: 0;
  }

  .about-renee-blocks {
    gap: var(--space-xl);
  }

  .about-renee-gallery {
    gap: var(--space-xs);
  }
}

/* --- Page shell --- */

.about-page {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background-color: var(--color-ivory);
}

/* --- Sections éditoriales --- */

.about-editorial {
  position: relative;
  width: 100%;
  padding: var(--space-4xl) var(--space-xl);
  border-bottom: 1px solid var(--tag-bg);
}

.about-editorial--accent {
  background-color: color-mix(in srgb, var(--silk-cream) 55%, var(--color-ivory));
}

.about-editorial-inner {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
}

.about-editorial-header {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 40rem;
  margin: 0 0 var(--space-3xl);
  padding: 0 0 var(--space-md);
  text-align: left;
}

.about-kicker {
  margin: 0 0 var(--space-sm);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-title {
  position: relative;
  margin: 0 0 var(--space-md);
  font-family: "TAN Pearl", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--color-purple);
}

.about-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.125rem;
  margin: var(--space-lg) 0 0;
  background: linear-gradient(
    90deg,
    var(--color-purple),
    color-mix(in srgb, var(--color-purple) 20%, transparent)
  );
}

.about-deck {
  margin: 0;
  max-width: 34rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-charcoal);
  opacity: 0.88;
}

/* --- Grille image + texte --- */

.about-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--space-3xl) var(--space-2xl);
  align-items: start;
}

.about-editorial-grid--image-right {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.about-editorial-grid--image-right .about-figure {
  order: 2;
}

.about-editorial-grid--image-right .about-body {
  order: 1;
}

.about-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
}

.about-figure-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--hover-shadow-luxury);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-figure:hover .about-figure-img {
  transform: translateY(var(--hover-lift-sm));
  box-shadow: var(--shadow-lg);
}

.about-figure-caption {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Corps de texte --- */

.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 36rem;
}

.about-body p {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-charcoal);
}

.about-body .about-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark);
}

.about-pullquote {
  position: relative;
  margin: var(--space-md) 0;
  padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-xl);
  border-left: 0.1875rem solid var(--color-purple);
  background-color: color-mix(in srgb, var(--color-white) 70%, transparent);
}

.about-pullquote p {
  margin: 0;
  font-family: "TAN Pearl", "Times New Roman", serif;
  font-size: clamp(1.125rem, 2.2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
  font-style: normal;
  color: var(--color-purple);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-md) 0 0;
  padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-xl);
  list-style: none;
  border: 1px solid color-mix(in srgb, var(--color-purple) 12%, transparent);
  background-color: color-mix(in srgb, var(--color-white) 55%, transparent);
}

.about-highlights li {
  position: relative;
  padding-left: var(--space-lg);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-charcoal);
}

.about-highlights li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: var(--radius-full);
  background-color: var(--color-purple);
}

/* --- Fermeture / CTA --- */

.about-closing {
  position: relative;
  width: 100%;
  padding: var(--space-4xl) var(--space-xl) var(--space-3xl);
  text-align: center;
  background-color: var(--color-ivory);
}

.contact-page-cta--about {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-4xl) var(--space-xl);
  overflow: hidden;
  background-color: var(--color-purple);
}

.contact-page-cta--about::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: var(--emotion-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.contact-page-cta--about .contact-page-cta-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(42rem, var(--max-width-site));
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-2xl);
  border: 1px solid color-mix(in srgb, var(--color-purple) 14%, transparent);
  border-radius: var(--radius-lg);
  background-color: color-mix(in srgb, var(--color-white) 62%, transparent);
  background-image: var(--emotion-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.contact-page-cta--about .contact-page-cta-title {
  text-shadow:
    0 0 1px color-mix(in srgb, var(--color-white) 92%, transparent),
    0 10px 28px color-mix(in srgb, var(--color-charcoal) 14%, transparent);
}

.contact-page-cta--about .contact-page-cta-text {
  max-width: 34rem;
  opacity: 0.92;
}

.contact-page-cta--about .contact-page-cta-button {
  margin-top: var(--space-sm);
}

.about-closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
}

.about-closing-kicker {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-closing-text {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-charcoal);
}

.about-closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

/* --- Responsive --- */

@media (max-width: 1024px) {
  .about-editorial-grid,
  .about-editorial-grid--image-right {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-editorial-grid--image-right .about-figure,
  .about-editorial-grid--image-right .about-body {
    order: unset;
  }

  .about-editorial-header {
    margin-bottom: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .about-editorial {
    padding: var(--space-3xl) var(--space-lg);
  }

  .boutique-hero--evenements .boutique-hero-inner {
    align-items: center;
    justify-content: center;
  }

  .boutique-hero--evenements .boutique-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .boutique-hero--evenements .boutique-catalogue-header {
    align-items: center;
    text-align: center;
  }

  .boutique-hero--evenements .boutique-hero-image {
    object-position: 60% 50%;
  }

  .about-pullquote {
    padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
  }

  .about-closing {
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  }

  .contact-page-cta--about {
    padding: var(--space-3xl) var(--space-lg);
  }

  .contact-page-cta--about .contact-page-cta-inner {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .about-editorial {
    padding: var(--space-2xl) var(--space-md);
  }

  .about-closing-actions {
    flex-direction: column;
    width: 100%;
  }

  .about-closing-actions .cta-principale,
  .about-closing-actions .cta-secondaire {
    width: 100%;
    max-width: 18rem;
    text-align: center;
  }

  .contact-page-cta--about {
    padding: var(--space-2xl) var(--space-md);
  }

  .contact-page-cta--about .contact-page-cta-inner {
    padding: var(--space-xl) var(--space-lg);
  }
}
