/*
 * about.css — KIRA Collection
 * Page About — storytelling premium, univers maison de mode
 */

/* ══════════════════════════════════════════════
   VARIABLES LOCALES
   ══════════════════════════════════════════════ */
:root {
  --ai: #F8F5EF;   /* ivoire principal */
  --as: #FBF8F4;   /* fond doux */
  --ac: #F3EDE6;   /* crème / Tunisie */
  --ak: #1F1D1B;   /* encre */
  --am: #8A817A;   /* gris chaud */
  --aa: #A67C7D;   /* accent rose discret */
  --al: rgba(31,29,27,0.10); /* ligne */
}

/* ══════════════════════════════════════════════
   RESET PAGE
   ══════════════════════════════════════════════ */
body[data-page="about"] {
  background: var(--ai);
}

/* supprime le max-width du .wrap global si trop étroit */
body[data-page="about"] main.wrap {
  max-width: 100%;
  padding: 0;
}

/* ══════════════════════════════════════════════
   ABOUT HERO
   ══════════════════════════════════════════════ */
.about-hero {
  position: relative;
  min-height: 620px;
  background-image: url('../img/hero.png');
  background-size: cover;
  background-position: center top;
  border-bottom: 1px solid var(--al);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* voile sombre pour lisibilité du texte */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,17,14,0.38);
}

.about-hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 40px;
}

.about-label {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}

.about-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 18px;
}

.about-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin: 0 0 32px;
}

.about-hero-line {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.45);
  margin: 0 auto 28px;
}

.about-slogan {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 16px 0 0;
  line-height: 1.12;
}

.about-signature {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   ABOUT STORY
   ══════════════════════════════════════════════ */
.about-story {
  background: var(--as);
  padding: 88px 40px;
  display: flex;
  justify-content: center;
}

.about-story-inner {
  max-width: 640px;
  width: 100%;
}

.about-section-label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aa);
  margin-bottom: 20px;
}

.about-section-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--ak);
  letter-spacing: 0.01em;
  line-height: 1.22;
  margin: 0 0 36px;
  font-style: italic;
}

.about-story-text p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.72;
  color: #3a3633;
  margin: 0 0 22px;
}
.about-story-text p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════
   ABOUT FOUNDER
   ══════════════════════════════════════════════ */
.about-founder {
  background: #fff;
  padding: 100px 40px;
  border-top: 1px solid var(--al);
}

.about-founder__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.about-founder__photo {
  max-width: 400px;
}

.about-founder__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-founder__text {
  display: flex;
  flex-direction: column;
}

.about-founder__text p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.78;
  color: #3a3633;
  margin: 0 0 18px;
}

.about-founder__text p:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════
   ABOUT MANIFESTO
   ══════════════════════════════════════════════ */
.about-manifesto {
  background: var(--ai);
  padding: 88px 40px;
  border-top: 1px solid var(--al);
}

.about-manifesto-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.about-manifesto-card {
  padding: 0 48px 0 0;
  border-right: 1px solid var(--al);
}
.about-manifesto-card:last-child {
  padding-right: 0;
  padding-left: 48px;
  border-right: none;
}
.about-manifesto-card:nth-child(2) {
  padding: 0 48px;
}

.about-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--aa);
  margin-bottom: 18px;
}

.about-manifesto-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--ak);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.about-manifesto-card p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.68;
  color: var(--am);
  margin: 0;
}

/* ══════════════════════════════════════════════
   ABOUT VISUAL SECTION
   ══════════════════════════════════════════════ */
.about-visual {
  background: var(--as);
  border-top: 1px solid var(--al);
  padding: 100px 40px;
}

.about-visual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.about-visual-image {
  max-width: 400px;
}
.about-visual-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-visual-content {
  display: flex;
  flex-direction: column;
}

.about-visual-content .about-section-title {
  margin-bottom: 24px;
}

.about-visual-content p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: #3a3633;
  margin: 0 0 32px;
  max-width: 400px;
}

.about-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  font-weight: 400;
  color: var(--ak);
  line-height: 1.52;
  border-left: 2px solid var(--aa);
  padding-left: 20px;
  margin: 0;
}

/* ══════════════════════════════════════════════
   ABOUT TUNISIE
   ══════════════════════════════════════════════ */
.about-rooted {
  background: var(--ac);
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--al);
}

.about-rooted-inner {
  max-width: 640px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.about-rooted-left {
  padding-top: 4px;
}

.about-rooted-left .about-section-label {
  margin-bottom: 12px;
}

.about-rooted-location {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--am);
}

.about-rooted h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--ak);
  margin: 0 0 20px;
  font-style: italic;
  line-height: 1.25;
}

.about-rooted p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.72;
  color: #3a3633;
  margin: 0;
}

/* ══════════════════════════════════════════════
   ABOUT CTA
   ══════════════════════════════════════════════ */
.about-cta {
  background: var(--ai);
  padding: 96px 40px;
  text-align: center;
  border-top: 1px solid var(--al);
}

.about-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--ak);
  margin: 0 0 16px;
  line-height: 1.22;
}

.about-cta p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: var(--am);
  margin: 0 0 40px;
  line-height: 1.65;
}

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

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.22s, color 0.22s;
}

.about-btn-primary {
  background: var(--ak);
  color: #F8F5EF;
  border: 1px solid var(--ak);
}
.about-btn-primary:hover {
  background: #3a3633;
  border-color: #3a3633;
}

.about-btn-secondary {
  background: transparent;
  color: var(--ak);
  border: 1px solid rgba(31,29,27,0.30);
}
.about-btn-secondary:hover {
  border-color: var(--ak);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   RESPONSIVE — tablette (≤ 900px)
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-hero { min-height: 480px; }
  .about-hero-text { padding: 72px 28px; }

  /* Founder */
  .about-founder__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-founder__photo {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  /* Visual */
  .about-visual-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-visual-image {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  /* Rooted */
  .about-rooted-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-rooted-left { padding-top: 0; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — mobile (≤ 680px)
   ════════════════════════════════════════════════ */
@media (max-width: 680px) {

  /* Hero */
  .about-hero {
    min-height: 380px;
    background-position: center center;
  }
  .about-hero-text { padding: 56px 24px; }
  .about-title { font-size: clamp(36px, 10vw, 56px) !important; }
  .about-slogan { font-size: clamp(28px, 8vw, 48px) !important; }

  /* Story */
  .about-story { padding: 60px 24px; }
  .about-story-text p { font-size: 14.5px; }

  /* Founder */
  .about-founder { padding: 60px 24px; }
  .about-founder__inner { gap: 36px; }
  .about-founder__photo { max-width: 100%; }
  .about-founder__text .about-section-title { margin-bottom: 20px; }
  .about-founder__text p { font-size: 14px; }

  /* Manifesto */
  .about-manifesto { padding: 60px 24px; }
  .about-manifesto-header { margin-bottom: 44px; }
  .about-manifesto-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-manifesto-card,
  .about-manifesto-card:nth-child(2),
  .about-manifesto-card:last-child {
    padding: 0 0 36px;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--al);
    margin-bottom: 36px;
  }
  .about-manifesto-card:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }

  /* Visual */
  .about-visual { padding: 60px 24px; }
  .about-visual-inner { gap: 36px; }
  .about-visual-image { max-width: 100%; }
  .about-visual-content .about-section-title { margin-bottom: 16px; }

  /* Rooted */
  .about-rooted { padding: 56px 24px; }
  .about-rooted h2 { font-size: clamp(20px, 5vw, 26px) !important; }

  /* CTA */
  .about-cta { padding: 68px 24px; }
  .about-cta p { font-size: 13px; }
  .about-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .about-btn {
    width: 100%;
    max-width: 260px;
  }
}
