/* =====================================================
   MAXIME DUFLOT — Page : Prestations Shooting
   ===================================================== */

/* ── Hero ───────────────────────────────────────────── */
.sh-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.sh-hero-text {
  padding: 80px var(--gutter) 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sh-hero-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: 32px;
}
.sh-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--rust);
}

.sh-hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.sh-hero-title em { font-style: italic; color: var(--rust); }

.sh-hero-cta {
  align-self: flex-start;
  margin-bottom: 44px;
}

.sh-hero-meta {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(28, 24, 20, 0.12);
}
.sh-hero-stat { }
.sh-hero-stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.sh-hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
  display: block;
}

.sh-hero-photo {
  position: relative;
  overflow: hidden;
}
.sh-hero-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #d8cfc0 0%, #a89078 40%, #3a2818 100%);
  transition: transform 1.8s cubic-bezier(.16, 1, .3, 1);
}
.sh-hero:hover .sh-hero-ph { transform: scale(1.03); }

.sh-hero-photo-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.7);
  background: rgba(28, 24, 20, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
}

/* ── Manifeste éditorial ────────────────────────────── */
.sh-manifeste {
  padding: 120px var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.sh-manifeste-index {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(28, 24, 20, 0.06);
  line-height: 1;
  user-select: none;
}

.sh-manifeste-body { }

.sh-manifeste-quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 36px;
}
.sh-manifeste-quote em { font-style: italic; }

.sh-manifeste-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 520px;
}

/* ── Sections service ────────────────────────────────── */
.sh-service {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 580px;
  border-top: 1px solid rgba(28, 24, 20, 0.1);
}

.sh-service.reverse {
  grid-template-columns: 2fr 3fr;
}
.sh-service.reverse .sh-service-photo { order: 2; }
.sh-service.reverse .sh-service-text  { order: 1; }

.sh-service-photo {
  position: relative;
  overflow: hidden;
}

.sh-service-ph {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 1.6s cubic-bezier(.16, 1, .3, 1);
}
.sh-service-photo:hover .sh-service-ph { transform: scale(1.04); }

.sh-sp-1 { background: linear-gradient(155deg, #c8c0b8 0%, #807060 50%, #281e18 100%); }
.sh-sp-2 { background: linear-gradient(145deg, #c8b0a0 0%, #987060 50%, #2a1810 100%); }
.sh-sp-3 { background: linear-gradient(150deg, #b8c8b0 0%, #709068 50%, #182818 100%); }

.sh-service-photo-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(246, 241, 230, 0.55);
  letter-spacing: 0.05em;
}

.sh-service-text {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-soft);
}

.sh-service-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}

.sh-service-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.sh-service-title em { font-style: italic; }

.sh-service-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 36px;
}

.sh-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.sh-service-tag {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  border: 1px solid rgba(28, 24, 20, 0.15);
  padding: 5px 12px;
}

/* ── Bannière plein-écran ────────────────────────────── */
.sh-banner {
  height: 480px;
  position: relative;
  overflow: hidden;
}
.sh-banner-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1410 0%, #3a2820 40%, #0a0806 100%);
  transition: transform 1.8s cubic-bezier(.16, 1, .3, 1);
}

.sh-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.2) 0%, rgba(10,8,6,0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px var(--gutter);
}
.sh-banner-text {
  max-width: 640px;
}
.sh-banner-quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 3vw, 40px);
  color: rgba(246, 241, 230, 0.9);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.sh-banner-author {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.4);
  margin-top: 18px;
}

/* ── Expérience / Parcours ────────────────────────────── */
.sh-journey {
  padding: 120px var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
}

.sh-journey-header {
  margin-bottom: 80px;
}
.sh-journey-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;
}
.sh-journey-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rust);
}
.sh-journey-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.sh-journey-title em { font-style: italic; }

.sh-journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.sh-step {
  padding: 48px 40px;
  background: var(--paper-soft);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.sh-step:hover { background: var(--paper-deep); }

.sh-step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 52px;
  color: rgba(28, 24, 20, 0.08);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  transition: color 0.3s;
}
.sh-step:hover .sh-step-num { color: rgba(183, 93, 58, 0.12); }

.sh-step-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
}

.sh-step-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Connecteur entre steps */
.sh-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: rgba(28, 24, 20, 0.2);
  z-index: 1;
}
.sh-step:last-child::after { display: none; }

/* ── Formules ────────────────────────────────────────── */
.sh-formules {
  background: var(--paper-deep);
  padding: 120px var(--gutter);
}

.sh-formules-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.sh-formules-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 80px;
}

.sh-formules-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.sh-formules-title em { font-style: italic; }

.sh-formules-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  text-align: right;
}

.sh-formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.sh-formule {
  background: var(--paper-soft);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
}
.sh-formule:hover { transform: translateY(-6px); }

.sh-formule-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}

.sh-formule-name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.sh-formule-name em { font-style: italic; }

.sh-formule-tagline {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.sh-formule-price-block {
  padding: 24px 0;
  border-top: 1px solid rgba(28, 24, 20, 0.1);
  border-bottom: 1px solid rgba(28, 24, 20, 0.1);
  margin-bottom: 28px;
}

.sh-formule-price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 44px;
  color: var(--ink);
  line-height: 1;
}
.sh-formule-price-unit {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-top: 4px;
}

.sh-formule-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 36px;
}
.sh-formule-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.sh-formule-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--rust);
}

/* ── CTA final ───────────────────────────────────────── */
.sh-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sh-cta-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #c0b0a0 0%, #806050 40%, #2a1808 100%);
  transition: transform 1.8s cubic-bezier(.16, 1, .3, 1);
}
.sh-cta:hover .sh-cta-ph { transform: scale(1.03); }

.sh-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,8,6,0.7) 0%, rgba(10,8,6,0.15) 100%);
}

.sh-cta-text {
  position: relative;
  z-index: 1;
  padding: 80px var(--gutter);
  max-width: 640px;
}

.sh-cta-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(246, 241, 230, 0.6);
  margin-bottom: 24px;
  display: block;
}

.sh-cta-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: rgba(246, 241, 230, 0.95);
  margin-bottom: 40px;
}
.sh-cta-title em { font-style: italic; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ─ ≤ 1023px ─ */
@media (max-width: 1023px) {
  .sh-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sh-hero-text {
    padding: clamp(66px, 11vw, 88px) var(--gutter) clamp(66px, 11vw, 88px);
    justify-content: flex-start;
    order: 2;
  }
  .sh-hero-photo {
    height: clamp(320px, 66vw, 500px);
    min-height: 320px;
    max-height: 480px;
    order: 1;
  }
  .sh-hero-ph { position: static; height: 100%; }

  .sh-manifeste {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: clamp(88px, 14vw, 118px) var(--gutter);
  }
  .sh-manifeste-index { display: none; }

  .sh-service,
  .sh-service.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sh-service-photo {
    height: clamp(300px, 64vw, 480px);
    min-height: 300px;
    max-height: 460px;
    order: 1 !important;
  }
  .sh-service-ph { position: static; height: 100%; }
  .sh-service-text {
    order: 2 !important;
    padding: clamp(62px, 10vw, 82px) clamp(28px, 5vw, 48px);
  }

  .sh-journey { padding: clamp(88px, 14vw, 118px) var(--gutter); }
  .sh-journey-header { margin-bottom: 62px; }
  .sh-journey-steps { grid-template-columns: 1fr; gap: 14px; }
  .sh-step::after { display: none; }

  .sh-formules { padding: clamp(88px, 14vw, 118px) var(--gutter); }
  .sh-formules-header { grid-template-columns: 1fr; gap: 26px; margin-bottom: 62px; }
  .sh-formules-note { text-align: left; }
  .sh-formules-grid { grid-template-columns: 1fr; gap: 16px; }

  .sh-cta-text { padding: clamp(72px, 12vw, 96px) var(--gutter); }
}

/* ─ ≤ 767px ─ */
@media (max-width: 767px) {
  .sh-hero-text { padding: clamp(66px, 11vw, 88px) var(--gutter) clamp(68px, 11vw, 90px); }
  .sh-hero-title {
    font-size: clamp(56px, 13.5vw, 100px);
    margin-bottom: 26px;
  }
  .sh-hero-cta { margin-bottom: 40px; }
  .sh-hero-eyebrow { margin-bottom: 28px; }
  .sh-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding-top: 32px;
  }
  .sh-hero-stat-num { font-size: 28px; }

  .sh-manifeste-quote { font-size: clamp(22px, 5.4vw, 32px); margin-bottom: 28px; }
  .sh-manifeste-text { max-width: none; font-size: 14.5px; }

  .sh-service-text { padding: clamp(58px, 10vw, 78px) var(--gutter); }
  .sh-service-title { margin-bottom: 22px; }
  .sh-service-body { max-width: none; margin-bottom: 30px; font-size: 14px; line-height: 1.78; }
  .sh-service-tags { margin-bottom: 34px; }

  .sh-banner { height: 360px; }
  .sh-banner-overlay { padding: clamp(40px, 8vw, 60px) var(--gutter); }

  .sh-journey-header { margin-bottom: 54px; }
  .sh-step { padding: 38px 30px; }
  .sh-step-num { font-size: 44px; margin-bottom: 20px; }

  .sh-formule { padding: 38px 30px 34px; }
  .sh-formule-name { font-size: 26px; }
  .sh-formule-price { font-size: 38px; }

  .sh-cta { min-height: 420px; }
  .sh-cta-text { padding: clamp(64px, 11vw, 90px) var(--gutter); max-width: none; }
  .sh-cta-title { font-size: clamp(34px, 9vw, 56px); margin-bottom: 32px; }
}

/* ─ ≤ 479px ─ */
@media (max-width: 479px) {
  .sh-hero-text { padding: 58px var(--gutter) 66px; }
  .sh-hero-title {
    font-size: clamp(46px, 12vw, 72px);
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 24px;
  }
  .sh-hero-cta { margin-bottom: 36px; }
  .sh-hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding-top: 30px;
  }
  .sh-hero-photo { height: 72vw; min-height: 280px; }
  .sh-hero-photo-label {
    left: var(--gutter);
    bottom: 20px;
    max-width: calc(100% - (var(--gutter) * 2));
    line-height: 1.35;
  }

  .sh-manifeste-quote { font-size: clamp(20px, 5.6vw, 28px); }

  .sh-service-photo { height: 72vw; min-height: 260px; }
  .sh-service-title { font-size: clamp(28px, 7vw, 38px); }

  .sh-banner { height: 300px; }
  .sh-banner-quote { font-size: clamp(20px, 5.4vw, 28px); }

  .sh-step { padding: 34px 24px; }
  .sh-formule { padding: 34px 24px 30px; }
  .sh-formule-price { font-size: 36px; }
  .sh-formule-features li { font-size: 12.5px; }
}
