/* =====================================================
   MAXIME DUFLOT — Pages : Prestations (Mariage & Vidéo)
   ===================================================== */

/* ── Hero partagé (eyebrow + titre + sous-titre) ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--rust);
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--rust); }
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 44px;
}

/* ────────────────────────────────────────
   MARIAGE
   ──────────────────────────────────────── */
.pm-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding-top: var(--nav-h);
}
.pm-hero-text {
  padding: 80px 60px 60px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pm-hero-photo { position: relative; overflow: hidden; }
.pm-hero-ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #d4c4a0 0%, #9a7848 50%, #3a2818 100%);
}
.pm-hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(28,24,20,0.15) 100%);
}

/* Approche */
.pm-approach {
  padding: 100px var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-text .eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.approach-text .eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--rust);
}
.approach-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.approach-heading em { font-style: italic; }
.approach-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 460px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.pillar {
  padding: 28px;
  border: 1px solid rgba(28, 24, 20, 0.1);
  background: var(--paper-soft);
  transition: border-color 0.3s;
}
.pillar:hover { border-color: rgba(183, 93, 58, 0.3); }
.pillar-icon { width: 36px; height: 36px; color: var(--rust); margin-bottom: 16px; }
.pillar-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.pillar-text { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.65; }

/* Collections */
.pm-collections { background: var(--paper-deep); padding: 56px var(--gutter) 100px; }
.collections-header {
  max-width: var(--content-max);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}
.collections-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.collections-heading em { font-style: italic; }
.collections-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 280px;
  line-height: 1.65;
  text-align: right;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.collection-card {
  background: var(--paper-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
}
.collection-card:hover { transform: translateY(-6px); }
.collection-card-img { height: 300px; overflow: hidden; position: relative; }
.collection-ph {
  width: 100%; height: 100%;
  transition: transform 1.4s cubic-bezier(.16, 1, .3, 1);
}
.collection-card:hover .collection-ph { transform: scale(1.05); }
.cp-1 { background: linear-gradient(155deg, #c8d4c0 0%, #7890a0 60%, #2a3a3a 100%); }
.cp-2 { background: linear-gradient(150deg, #c8b890 0%, #887040 60%, #2a1a0a 100%); }
.cp-3 { background: linear-gradient(145deg, #2a2018 0%, #1a1008 60%, #3a2818 100%); }

.collection-card-body { padding: 36px 32px 40px; flex: 1; display: flex; flex-direction: column; }
.collection-tier {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}
.collection-name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.collection-name em { font-style: italic; }
.collection-price { font-size: 13px; font-weight: 300; color: var(--ink-soft); margin-bottom: 28px; }
.collection-price strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
}
.collection-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 36px;
}
.collection-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.collection-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--rust);
}

/* CTA mariage */
.pm-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.pm-cta-photo { overflow: hidden; }
.pm-cta-ph {
  width: 100%; height: 100%;
  background: linear-gradient(155deg, #d0b890 0%, #a07840 50%, #3a1a0a 100%);
  transition: transform 1.4s cubic-bezier(.16, 1, .3, 1);
}
.pm-cta-photo:hover .pm-cta-ph { transform: scale(1.04); }
.pm-cta-text {
  background: var(--paper-soft);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pm-cta-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.pm-cta-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.pm-cta-title em { font-style: italic; }
.pm-cta-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
}

/* ────────────────────────────────────────
   VIDÉO
   ──────────────────────────────────────── */
.pv-hero {
  min-height: 80svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}
.pv-hero-text {
  padding: 80px 60px 60px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.pv-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--rust);
}
.pv-hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.pv-hero-title em { font-style: italic; color: var(--rust); }
.pv-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 44px;
}
.pv-hero-photo { overflow: hidden; position: relative; }
.pv-hero-ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #c8b090 0%, #806040 50%, #2a1a08 100%);
}
.pv-hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28,24,20,0.2) 100%);
}

/* Sections service */
.pv-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 1px solid rgba(28, 24, 20, 0.1);
}
.pv-service.reverse .pv-service-player { order: 2; }
.pv-service.reverse .pv-service-text   { order: 1; }

.pv-service-player { position: relative; overflow: hidden; }
.pv-player-bg { width: 100%; height: 100%; position: absolute; inset: 0; }

/* iframe YouTube — cover sans bandes noires */
.pv-player-iframe-wrap {
  container-type: size;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pv-player-iframe-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max(100cqw, 177.78cqh);
  height: max(100cqh, 56.25cqw);
  border: none;
}
.pv-player-bg-1 { background: linear-gradient(145deg, #2a1a30 0%, #6030a0 50%, #1a0828 100%); }
.pv-player-bg-2 { background: linear-gradient(145deg, #1a2a1a 0%, #3a5a2a 50%, #0a1a0a 100%); }

.pv-player-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.pv-player-header { display: flex; align-items: center; gap: 12px; }
.pv-player-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.pv-player-meta { font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 300; letter-spacing: 0.03em; }
.pv-player-meta span { display: block; font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.pv-player-controls { display: flex; align-items: center; gap: 14px; }
.pv-play-btn {
  width: 42px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.pv-play-btn:hover { background: rgba(255,255,255,0.15); border-color: white; }
.pv-time { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; white-space: nowrap; }
.pv-progress { flex: 1; height: 1.5px; background: rgba(255,255,255,0.25); position: relative; cursor: pointer; }
.pv-progress-fill { position: absolute; left: 0; top: 0; bottom: 0; background: white; }
.pv-vimeo { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }

.pv-service-text {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-soft);
}
.pv-service-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pv-service-label::before { content: ''; width: 24px; height: 1px; background: var(--rust); }
.pv-service-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.pv-service-title em { font-style: italic; }
.pv-service-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

/* Pourquoi la vidéo */
.pv-why { padding: 100px var(--gutter); max-width: var(--content-max); margin: 0 auto; }
.why-header { margin-bottom: 64px; }
.why-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.why-heading em { font-style: italic; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.why-icon { width: 32px; height: 32px; color: var(--rust); margin-bottom: 20px; }
.why-title { font-family: var(--font-serif); font-style: italic; font-size: 20px; margin-bottom: 12px; }
.why-text { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }

/* CTA vidéo */
.pv-cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.pv-cta-photo { overflow: hidden; }
.pv-cta-ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #c0a880 0%, #806040 50%, #2a1808 100%);
}
.pv-cta-text {
  background: var(--paper-deep);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pv-cta-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--ink-soft); margin-bottom: 24px; }
.pv-cta-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.pv-cta-title em { font-style: italic; }
.pv-cta-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
}

/* Padding section-bar sur pages prestations */
.section-bar-padded { padding: 100px var(--gutter) 0; }
.section-bar-slim {
  padding: 56px var(--gutter) 0;
  max-width: var(--content-max);
  margin-inline: auto;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — prestations (mariage & vidéo)
   ═══════════════════════════════════════════ */

/* ── Laptop ── */
@media (max-width: 1023px) {
  .pm-hero-text,
  .pv-hero-text { padding: 100px 40px 56px var(--gutter); }
  .pm-approach { padding: clamp(80px, 11vw, 110px) var(--gutter); }
  .approach-grid { gap: 56px; }
  .pm-collections { padding: clamp(48px, 7vw, 72px) var(--gutter) clamp(80px, 11vw, 110px); }
  .pv-why { padding: clamp(80px, 11vw, 110px) var(--gutter); }
  .pm-cta-text,
  .pv-cta-text { padding: clamp(64px, 8vw, 80px) clamp(40px, 6vw, 56px); }
  .pv-service-text { padding: clamp(56px, 7vw, 72px) clamp(40px, 6vw, 56px); }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .collection-card-img { height: 240px; }
  .pm-cta { min-height: 380px; }
  .pv-cta { min-height: 360px; }
  .pv-service { min-height: 420px; }
  .pm-cta-text,
  .pv-cta-text { padding: clamp(56px, 7vw, 72px) clamp(32px, 5vw, 48px); }
  .pv-service-text { padding: clamp(48px, 6vw, 64px) clamp(32px, 5vw, 48px); }
}

/* ── Tablette ── */
@media (max-width: 767px) {
  /* Hero : 1-col, photo au-dessus du texte */
  .pm-hero,
  .pv-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pm-hero-text,
  .pv-hero-text {
    padding: clamp(62px, 10vw, 82px) var(--gutter) clamp(66px, 11vw, 88px);
    order: 1;
  }
  .pm-hero-photo,
  .pv-hero-photo {
    order: 0;
    height: clamp(300px, 68vw, 500px);
  }
  .hero-title { margin-bottom: 28px; }
  .hero-sub { margin-bottom: 38px; max-width: none; font-size: 14.5px; line-height: 1.78; }
  .pv-hero-title { font-size: clamp(56px, 14vw, 96px); margin-bottom: 28px; }
  .pv-hero-sub { margin-bottom: 38px; max-width: none; line-height: 1.78; }

  /* Approche */
  .pm-approach { padding: clamp(84px, 14vw, 112px) var(--gutter); }
  .approach-grid { grid-template-columns: 1fr; gap: 54px; }
  .approach-heading { margin-bottom: 20px; }
  .approach-body { max-width: none; line-height: 1.78; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pillar { padding: 24px; }
  .pillar-icon { width: 30px; height: 30px; margin-bottom: 14px; }

  /* Collections */
  .pm-collections { padding: clamp(40px, 6vw, 56px) var(--gutter) clamp(84px, 14vw, 112px); }
  .collections-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
  .collections-note { text-align: left; max-width: none; }
  .collections-grid { grid-template-columns: 1fr; gap: 16px; }
  .collection-card-img {
    height: auto;
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }
  .collection-card-body { padding: 34px 30px 38px; }
  .collection-name { font-size: clamp(24px, 6vw, 30px); }

  /* CTA mariage : 1-col, photo au-dessus */
  .pm-cta {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pm-cta-photo { height: 56vw; min-height: 280px; max-height: 420px; }
  .pm-cta-text {
    padding: clamp(66px, 11vw, 88px) var(--gutter);
  }
  .pm-cta-title { margin-bottom: 20px; }
  .pm-cta-body { max-width: none; margin-bottom: 32px; }

  /* Services vidéo : 1-col */
  .pv-service { grid-template-columns: 1fr; min-height: auto; }
  .pv-service + .pv-service { margin-top: 14px; }
  .pv-service.reverse .pv-service-player,
  .pv-service.reverse .pv-service-text { order: unset; }
  .pv-service-player { min-height: 300px; height: 66vw; max-height: 460px; }
  .pv-service-text {
    padding: clamp(58px, 10vw, 78px) var(--gutter);
  }
  .pv-service-title { margin-bottom: 20px; }
  .pv-service-body { max-width: none; margin-bottom: 32px; }
  .pv-player-overlay { padding: 20px; }
  .pv-player-controls { gap: 12px; }

  /* Pourquoi la vidéo */
  .pv-why { padding: clamp(84px, 14vw, 112px) var(--gutter); }
  .why-header { margin-bottom: 54px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .why-icon { width: 28px; height: 28px; margin-bottom: 16px; }
  .why-title { font-size: 18px; margin-bottom: 10px; }

  /* CTA vidéo : 1-col */
  .pv-cta {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pv-cta-photo { height: 52vw; min-height: 260px; max-height: 400px; }
  .pv-cta-text {
    padding: clamp(66px, 11vw, 88px) var(--gutter);
  }
  .pv-cta-title { margin-bottom: 20px; }
  .pv-cta-body { max-width: none; margin-bottom: 32px; }

  .section-bar-padded { padding: clamp(84px, 14vw, 112px) var(--gutter) 0; }
  .section-bar-slim { padding: 40px var(--gutter) 0; max-width: var(--content-max); }
}

/* ── Mobile ── */
@media (max-width: 479px) {
  .pm-hero-text,
  .pv-hero-text { padding: 58px var(--gutter) 64px; }
  .pm-hero-photo,
  .pv-hero-photo { height: 72vw; min-height: 280px; }
  .hero-title {
    font-size: clamp(40px, 11vw, 60px);
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 24px;
  }
  .pv-hero-title { font-size: clamp(48px, 14vw, 80px); }
  .hero-eyebrow { margin-bottom: 28px; }

  .pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .pillar { padding: 22px; }

  .why-grid { grid-template-columns: 1fr; gap: 34px; }

  .collections-grid { gap: 14px; }
  .collection-card-img { min-height: 220px; aspect-ratio: 4 / 3; }
  .collection-card-body { padding: 30px 24px 34px; }
  .collection-features { gap: 9px; margin-bottom: 30px; }
  .collection-features li { font-size: 12.5px; }
  .pv-service + .pv-service { margin-top: 12px; }
  .pv-player-overlay { padding: 18px; }
  .pv-vimeo { display: none; }
}
