/* ================================================================
   Fanny Clauss — Sub-page shared styles
   (contact, entreprise, evenements)
   ================================================================ */

/* ═══════════════════════════════════════════════
   HERO — 60vh cinematic (sub-pages)
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%; height: 60vh; min-height: 440px;
  overflow: hidden; background: #000;
}
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 65%;
  opacity: 0;
  animation: hPhoto 5s cubic-bezier(0.16,1,0.3,1) 0s forwards;
}
@keyframes hPhoto {
  0%   { opacity: 0; object-position: center 65%; }
  4%   { opacity: 1; object-position: center 63%; }
  100% { opacity: 1; object-position: center 30%; }
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,28,28,0.60) 0%,
    rgba(28,28,28,0.50) 30%,
    rgba(28,28,28,0.48) 55%,
    rgba(28,28,28,0.55) 78%,
    rgba(28,28,28,0.75) 100%
  );
  pointer-events: none; z-index: 2;
}

/* Centered content overlay */
.hero__content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 40px;
  opacity: 0;
  animation: hFade 0.8s ease 0.35s forwards;
}
@keyframes hFade { to { opacity: 1; } }

.hero__sub-label {
  font-family: 'Lato'; font-size: 10px; font-weight: 700;
  letter-spacing: 0.52em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); display: block; margin-bottom: 16px;
}
.hero__sub-dash {
  display: block; width: 28px; height: 0.5px;
  background: var(--fc-gold); margin: 0 auto 22px;
}
.hero__page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200; font-style: italic;
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 0.92; letter-spacing: -0.03em; color: #fff;
}
.hero__page-title .script {
  font-family: 'Dancing Script', cursive;
  font-style: normal; color: var(--fc-gold);
}

/* ═══════════════════════════════════════════════
   SUBPAGE BLOCK (shared layout)
═══════════════════════════════════════════════ */
.subpage {
  padding: 64px 48px;
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  border-bottom: 0.5px solid var(--fc-taupe);
}
.subpage > * { direction: ltr; }

.subpage__num {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300;
  font-size: 18px; color: var(--fc-gold); margin-bottom: 12px;
}
.subpage h2 {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300;
  font-size: 56px; line-height: 1; color: var(--fc-black); margin-bottom: 18px;
}
.subpage h2 .script {
  font-family: 'Dancing Script', cursive; font-style: normal;
  color: var(--fc-gold); font-size: 64px;
}
.subpage__quote {
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 16px; color: var(--fc-gold);
  border-left: 0.5px solid var(--fc-gold);
  padding-left: 16px; margin-bottom: 26px; line-height: 1.6;
}
.subpage__desc {
  font-size: 14px; line-height: 1.9; color: var(--fc-dark-gray);
  margin-bottom: 26px; max-width: 480px;
}
.subpage__feats { list-style: none; margin-bottom: 28px; max-width: 480px; }
.subpage__feats li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  padding: 10px 0; border-bottom: 0.5px solid var(--fc-taupe);
  font-size: 13px; color: var(--fc-dark-gray);
}
.subpage__feats li::before {
  content: '+'; color: var(--fc-gold);
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 22px; line-height: 0.8;
}

/* ═══════════════════════════════════════════════
   TARIF CARD
═══════════════════════════════════════════════ */
.tarif {
  border: 0.5px solid var(--fc-taupe); padding: 28px;
  max-width: 480px; margin-bottom: 24px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.tarif:hover {
  border-color: rgba(184,150,90,0.4);
  box-shadow: 0 4px 20px rgba(184,150,90,0.08);
}
.tarif__cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--fc-gold); margin-bottom: 6px;
}
.tarif__title {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300;
  font-size: 22px; color: var(--fc-black); margin-bottom: 16px;
}
.tarif--gold { border-color: var(--fc-gold); }
.tarif--gold .tarif__cat { color: var(--fc-gold); }

.tarif ul { list-style: none; margin-bottom: 18px; }
.tarif li {
  font-size: 12px; line-height: 2; color: var(--fc-warm-gray);
  padding-left: 20px; position: relative;
}
.tarif li::before { content: '—'; position: absolute; left: 0; color: var(--fc-gold); }
.tarif__price {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px; border-top: 0.5px solid var(--fc-taupe);
}
.tarif__price b {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300;
  font-size: 30px; color: var(--fc-gold);
}
.tarif__price small {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--fc-warm-gray);
}

/* ═══════════════════════════════════════════════
   IMAGE STACK
═══════════════════════════════════════════════ */
.stack { position: relative; height: 600px; }
.stack__a {
  position: absolute; width: 70%; height: 460px; z-index: 1;
}
.stack__b {
  position: absolute; width: 55%; height: 280px; z-index: 2;
  border: 8px solid #fff; box-shadow: 0 8px 28px rgba(28,28,28,0.18);
}
.stack__num {
  position: absolute; top: 20px;
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 240px; line-height: 1;
  color: rgba(184,150,90,0.08); z-index: 0;
  user-select: none; letter-spacing: -0.05em;
}

/* ═══════════════════════════════════════════════
   MINI GALLERY
═══════════════════════════════════════════════ */
.mg-wrap {
  position: relative;
  padding-left: 72px;
  padding-right: 72px;
}
.mini-gallery {
  margin-top: 36px;
  display: flex; gap: 6px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-color: var(--fc-gold-light) transparent;
}
.mini-gallery::-webkit-scrollbar { height: 6px; }
.mini-gallery::-webkit-scrollbar-track { background: transparent; }
.mini-gallery::-webkit-scrollbar-thumb { background: var(--fc-gold-light); }
.mini-gallery .imghover {
  flex: 0 0 calc((100% - 18px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}
.mini-gallery .ph { height: 240px; }
.mini-gallery .imghover { overflow: hidden; }
.gallery-arrows {
  position: absolute;
  top: 120px;
  left: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.gallery-arrow {
  width: 42px;
  height: 42px;
  position: relative;
  padding: 0;
  border: 0.5px solid var(--fc-black);
  border-radius: 50%;
  background: var(--fc-black);
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(28,28,28,0.10);
  transition: background .25s ease, border-color .25s ease, color .25s ease, opacity .25s ease, transform .25s ease;
  pointer-events: auto;
}
.gallery-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.gallery-arrow--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}
.gallery-arrow--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}
.gallery-arrow:hover {
  background: var(--fc-gold);
  border-color: var(--fc-gold);
  transform: translateY(-1px);
}
.gallery-arrow:disabled {
  opacity: .28;
  cursor: default;
  transform: none;
}

/* ═══════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════ */
.cta-strip {
  max-width: 1320px; margin: 0 auto; text-align: center;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SUB-PAGES
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .subpage { grid-template-columns: 1fr; padding: 60px 22px; gap: 40px; }
  .subpage h2 { font-size: 40px; }
  .subpage h2 .script { font-size: 48px; }

  .stack { height: 380px; }
  .stack__a { height: 280px; width: 75%; }
  .stack__b { height: 180px; width: 52%; }
  .stack__num { font-size: 160px; }

  .tarif { max-width: 100%; }
  .mg-wrap {
    padding-left: 58px;
    padding-right: 58px;
  }
  .gallery-arrows {
    top: 100px;
    left: 12px;
    right: 12px;
  }
  .mini-gallery { gap: 4px; }
  .mini-gallery .imghover { flex-basis: calc((100% - 4px) / 2); }
  .mini-gallery .ph { height: 200px; }

  .cta-strip { padding-left: 22px !important; padding-right: 22px !important; padding-top: 48px !important; padding-bottom: 48px !important; }
  .cta-strip .cta-script { font-size: clamp(44px, 14vw, 80px) !important; }
  .cta-strip .cta-h2 { font-size: clamp(22px, 5vw, 38px) !important; }

  .hero__center-label { white-space: normal; letter-spacing: 0.22em; }
}

@media (max-width: 640px) {
  .subpage { padding: 48px 22px; gap: 32px; }
  .subpage h2 { font-size: 32px; }
  .subpage h2 .script { font-size: 38px; }
  .subpage__desc { font-size: 13px; }
  .subpage__feats li { font-size: 12px; }

  .stack { height: 320px; }
  .stack__a { height: 230px; }
  .stack__b { height: 150px; }
  .gallery-arrows { top: 85px; }
  .mini-gallery .imghover { flex-basis: 78%; }
  .mini-gallery .ph { height: 170px; }
}

@media (max-width: 480px) {
  .subpage h2 { font-size: 26px; }
  .subpage h2 .script { font-size: 32px; }

  .stack__b { display: none; }
  .stack { height: 260px; }
  .stack__a { width: 100%; height: 260px; top: 0; }
  .gallery-arrows { top: 75px; }
  .mini-gallery .ph { height: 150px; }

  .tarif { padding: 18px 20px; }
  .tarif__price b { font-size: 24px; }
}
