/* Thème Photographe mariage — Éditorial immersif
   Layout radicalement différent des autres templates :
   pas de container global, pas de grilles métiers, full-bleed photos,
   typo serif italique très généreuse, rythme magazine. */

:root {
  --ph-bg: #faf7f2;
  --ph-bg-warm: #f1ece2;
  --ph-bg-dark: #14110e;
  --ph-ink: #1a1814;
  --ph-ink-soft: rgba(26, 24, 20, 0.62);
  --ph-line: rgba(26, 24, 20, 0.14);
  --ph-gold: #b89870;
  --ph-paper: #fdfbf7;
  --font-heading: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
}

body.theme-photographe {
  margin: 0;
  background: var(--ph-bg);
  color: var(--ph-ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.theme-photographe a { color: inherit; text-decoration: none; }
.theme-photographe img { display: block; max-width: 100%; height: auto; }

/* ───── Header minimaliste fixe ───── */
.ph-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.5rem;
  mix-blend-mode: difference;
  color: #fff;
  font-family: var(--font-body);
}
.ph-brand {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.ph-nav { display: flex; gap: 2.2rem; }
.ph-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.ph-nav a:hover { opacity: 0.55; }
@media (max-width: 720px) {
  .ph-header { padding: 1.2rem 1.4rem; }
  .ph-nav { display: none; }
}

/* ───── HERO : une seule photo majestueuse plein écran ───── */
.ph-hero {
  position: relative;
  min-height: 100vh;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center 30%;
  color: var(--ph-paper);
  display: flex;
  align-items: flex-end;
  padding: 0 0 6rem;
}
.ph-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.ph-hero-video.hero-video-fade { opacity: 0; }
.ph-hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 17, 14, 0.15) 0%, rgba(20, 17, 14, 0.05) 40%, rgba(20, 17, 14, 0.75) 100%);
}
.ph-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6vw;
  max-width: 1100px;
}
.ph-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
  opacity: 0.85;
}
.ph-hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(3.5rem, 11vw + 0.5rem, 11rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 2rem;
}
.ph-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ph-paper);
}
.ph-hero-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw + 0.5rem, 1.45rem);
  line-height: 1.45;
  max-width: 38ch;
  margin: 0 0 3rem;
  opacity: 0.92;
}
.ph-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.6rem 0;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.ph-hero-scroll svg { opacity: 0.7; }

/* ───── Section Le travail — galerie pleine page entrelacée ───── */
.ph-travail {
  padding: 8rem 0 6rem;
  background: var(--ph-bg);
}
.ph-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ph-gold);
  margin: 0 0 1.5rem;
  font-weight: 400;
}
.ph-h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 2rem;
  color: var(--ph-ink);
}
.ph-h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ph-gold);
}
.ph-travail-intro,
.ph-histoires-intro,
.ph-styles-intro {
  max-width: 760px;
  margin: 0 auto 5rem;
  padding: 0 6vw;
  text-align: center;
}
.ph-intro-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 auto;
  color: var(--ph-ink-soft);
}

.ph-photo {
  margin: 0;
  overflow: hidden;
  background: var(--ph-bg-warm);
}
.ph-photo--full {
  width: 100%;
  height: clamp(60vh, 85vh, 90vh);
  margin-block: 4rem;
}
.ph-photo--full img {
  width: 100%; height: 100%; object-fit: cover;
}
.ph-photo--tall img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
}
.ph-photo-duo {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 3vw;
  padding: 0 6vw;
  margin: 5rem 0;
  align-items: end;
}
.ph-photo-duo--inverse { grid-template-columns: 1fr 38%; align-items: start; }
.ph-photo-duo .ph-photo--tall { aspect-ratio: 3/4; }
.ph-photo-duo .ph-photo--tall img { height: 100%; }
@media (max-width: 820px) {
  .ph-photo-duo, .ph-photo-duo--inverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.ph-pull {
  max-width: 720px;
  margin: 6rem auto;
  padding: 0 6vw;
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw + 0.5rem, 2.1rem);
  line-height: 1.4;
  color: var(--ph-ink);
}
.ph-pull p { margin: 0 0 1rem; }
.ph-pull p::before { content: ''; display: block; width: 36px; height: 1px; background: var(--ph-gold); margin: 0 auto 2rem; }
.ph-pull cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ph-gold);
  margin-top: 1.5rem;
}

.ph-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
  max-width: 1100px;
  margin: 8rem auto 0;
  padding: 0 6vw;
}
.ph-service h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.65rem;
  margin: 0.5rem 0 1rem;
  color: var(--ph-ink);
}
.ph-service p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ph-ink-soft);
  margin: 0;
}
.ph-service-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--ph-gold);
  line-height: 1;
  margin: 0;
}
@media (max-width: 820px) {
  .ph-services { grid-template-columns: 1fr; gap: 3rem; }
}

/* ───── Section Histoires (cas études) — chaque mariage en story ───── */
.ph-histoires {
  background: var(--ph-bg-warm);
  padding: 9rem 0 8rem;
}
.ph-histoire {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4vw;
  max-width: 1280px;
  margin: 0 auto 8rem;
  padding: 0 6vw;
  align-items: start;
}
.ph-histoire:last-child { margin-bottom: 0; }
.ph-histoire-meta {
  position: sticky;
  top: 100px;
  padding-top: 1rem;
  border-top: 1px solid var(--ph-line);
}
.ph-histoire-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ph-gold);
  margin: 0 0 1rem;
}
.ph-histoire-titre {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.05;
  margin: 0 0 0.6rem;
}
.ph-histoire-lieu {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ph-ink-soft);
  margin: 0 0 0.7rem;
}
.ph-histoire-brief {
  font-size: 0.92rem;
  color: var(--ph-ink-soft);
  font-style: italic;
  margin: 0;
}

.ph-histoire-corps { display: flex; flex-direction: column; gap: 2.5rem; }
.ph-histoire-cover {
  margin: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.ph-histoire-cover img { width: 100%; height: 100%; object-fit: cover; }
.ph-histoire-texte p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ph-ink);
  margin: 0;
  max-width: 60ch;
}
.ph-histoire-texte p::first-letter {
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  float: left;
  margin: 0.15rem 0.6rem 0 0;
  color: var(--ph-gold);
}
.ph-histoire-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.ph-histoire-mini figure { margin: 0; aspect-ratio: 1/1; overflow: hidden; }
.ph-histoire-mini img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 880px) {
  .ph-histoire { grid-template-columns: 1fr; }
  .ph-histoire-meta { position: static; }
}

/* ───── Section Styles — 4 approches zigzag ───── */
.ph-styles { padding: 9rem 0 8rem; }
.ph-styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4vw 5vw;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 6vw;
}
.ph-style { display: flex; flex-direction: column; gap: 1.5rem; }
.ph-style:nth-child(2), .ph-style:nth-child(3) { margin-top: 4rem; }
.ph-style-img { margin: 0; aspect-ratio: 4/5; overflow: hidden; }
.ph-style-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
.ph-style:hover .ph-style-img img { transform: scale(1.04); }
.ph-style-text h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.05;
  margin: 0 0 0.8rem;
}
.ph-style-text p {
  color: var(--ph-ink-soft);
  line-height: 1.7;
  font-size: 0.98rem;
  margin: 0;
  max-width: 44ch;
}
@media (max-width: 720px) {
  .ph-styles-grid { grid-template-columns: 1fr; }
  .ph-style:nth-child(n) { margin-top: 0; }
}

/* ───── Section Témoignages — un par "page" plein écran ───── */
.ph-temoignages { background: var(--ph-bg-dark); }
.ph-temoignage {
  position: relative;
  min-height: 88vh;
  background-image: var(--temoignage-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ph-paper);
  overflow: hidden;
}
.ph-temoignage-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 14, 0.45) 0%, rgba(20, 17, 14, 0.78) 100%);
}
.ph-temoignage-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem 6vw;
  text-align: center;
}
.ph-temoignage-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ph-gold);
  margin: 0 0 2.5rem;
}
.ph-temoignage-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw + 0.6rem, 2.4rem);
  line-height: 1.45;
  margin: 0 0 2.5rem;
  border: 0;
  padding: 0;
  quotes: '« ' ' »';
}
.ph-temoignage-quote::before { content: open-quote; opacity: 0.5; }
.ph-temoignage-quote::after { content: close-quote; opacity: 0.5; }
.ph-temoignage-author {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}
.ph-temoignage-author span {
  display: block;
  margin-top: 0.4rem;
  color: var(--ph-gold);
  opacity: 0.85;
  font-size: 0.72rem;
}

/* ───── Réservation — bloc sobre, formulaire éditorial ───── */
.ph-reservation { background: var(--ph-bg); padding: 9rem 0; }
.ph-reservation-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 6vw;
  text-align: center;
}
.ph-reservation-inner .ph-intro-lead { margin-bottom: 4rem; }

.ph-form { text-align: left; margin-top: 1rem; }
.ph-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ph-field { margin-bottom: 1.8rem; }
.ph-field label {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  margin-bottom: 0.6rem;
  color: var(--ph-ink);
}
.ph-field input,
.ph-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ph-line);
  background: transparent;
  padding: 0.7rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ph-ink);
  border-radius: 0;
  resize: vertical;
}
.ph-field input::placeholder,
.ph-field textarea::placeholder { color: rgba(26, 24, 20, 0.32); font-style: italic; }
.ph-field input:focus,
.ph-field textarea:focus { outline: none; border-bottom-color: var(--ph-gold); }
.ph-form-submit {
  margin-top: 2rem;
  border: 1px solid var(--ph-ink);
  background: transparent;
  color: var(--ph-ink);
  padding: 1.1rem 2.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.ph-form-submit:hover { background: var(--ph-ink); color: var(--ph-paper); }
.ph-form-note {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ph-ink-soft);
  font-family: var(--font-heading);
}
@media (max-width: 640px) {
  .ph-form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ───── Portrait Léa ───── */
.ph-portrait {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  padding: 9rem 6vw;
  background: var(--ph-bg-warm);
}
.ph-portrait-img { margin: 0; aspect-ratio: 4/5; overflow: hidden; max-width: 460px; }
.ph-portrait-img img { width: 100%; height: 100%; object-fit: cover; }
.ph-portrait-text { max-width: 520px; }
.ph-portrait-text p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.12rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.ph-portrait-note {
  font-style: italic;
  font-size: 0.95rem !important;
  color: var(--ph-ink-soft);
  margin-top: 1.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ph-line);
}
@media (max-width: 820px) {
  .ph-portrait { grid-template-columns: 1fr; padding: 6rem 6vw; }
}

/* ───── FAQ minimaliste ───── */
.ph-faq { padding: 8rem 0 7rem; }
.ph-faq-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 6vw;
  text-align: center;
}
.ph-faq-inner .ph-h2 { margin-bottom: 3.5rem; }
.ph-faq-list { text-align: left; }
.ph-faq-item {
  border-bottom: 1px solid var(--ph-line);
  padding: 1.5rem 0;
}
.ph-faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ph-faq-item summary::-webkit-details-marker { display: none; }
.ph-faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--ph-gold);
  transition: transform 0.3s;
}
.ph-faq-item[open] summary::after { transform: rotate(45deg); }
.ph-faq-item p {
  margin: 1rem 0 0;
  color: var(--ph-ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ───── Footer sobre ───── */
.ph-footer {
  background: var(--ph-bg-dark);
  color: rgba(253, 251, 247, 0.65);
  padding: 4rem 6vw;
}
.ph-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3vw;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.ph-footer-nom {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ph-paper);
  margin: 0 0 0.3rem;
}
.ph-footer-meta { margin: 0; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; }
.ph-footer-contact { display: flex; flex-direction: column; gap: 0.4rem; }
.ph-footer-contact a:hover { color: var(--ph-gold); }
.ph-footer-legal { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; }
.ph-footer-legal a:hover { color: var(--ph-gold); }
@media (max-width: 720px) {
  .ph-footer-inner { grid-template-columns: 1fr; text-align: left; }
  .ph-footer-legal { text-align: left; }
}

/* ───── Preview banner ───── */
.theme-photographe .preview-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ph-ink); color: var(--ph-paper);
  text-align: center; padding: 0.75rem;
  font-size: 0.85rem; letter-spacing: 0.08em;
  z-index: 100;
}
