/* ================================================
   ADAM CINEMATIC — LUXURY REDESIGN
   ================================================ */

:root {
  --black:      #080808;
  --dark:       #0c0c0c;
  --card:       #111111;
  --gold:       #c8a96e;
  --gold-light: #e8d5a3;
  --gold-pale:  rgba(200, 169, 110, 0.12);
  --cream:      #f0ece4;
  --muted:      #9a9187;
  --border:     rgba(200, 169, 110, 0.18);
  --border-s:   rgba(200, 169, 110, 0.08);
  --max-w:      1300px;
  --nav-h:      80px;
  --ease:       cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--nav-h);
  transition: background 0.5s, border-color 0.5s, backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.menu-open {
  background: #080808;
  border-bottom-color: var(--border);
}

.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 30px;
  opacity: 0.88;
  transition: opacity 0.3s;
}
.nav__logo:hover .nav__logo-img { opacity: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--cream); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link--cta {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 9px 22px;
  letter-spacing: 0.18em;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav__link--cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.nav__link--cta::after { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 26px; height: 1px;
  background: var(--cream);
  transition: transform 0.35s, opacity 0.35s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.08);
  transition: transform 10s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.35) 0%,
    rgba(8,8,8,0.55) 40%,
    rgba(8,8,8,0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 9vw, 118px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero__ornament-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero__ornament-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.hero__ornament-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero__subtitle {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 236, 228, 0.65);
  margin-bottom: 56px;
  font-weight: 300;
}

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.5);
  font-weight: 500;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all 0.35s var(--ease);
  border: 1px solid transparent;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(200, 169, 110, 0.28);
}
.btn--outline {
  border-color: var(--border);
  color: var(--cream);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.btn--ghost {
  border-color: rgba(240,236,228,0.2);
  color: var(--muted);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
}

/* ================================================
   SHARED SECTION STYLES
   ================================================ */
.section { padding: 128px 0; }

.section__header { text-align: center; margin-bottom: 80px; }

.section__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 28px;
}
.section__title em { font-style: italic; color: var(--gold-light); }

.section__rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

.section__rule--left { margin: 0 0; }

.section__cta {
  text-align: center;
  margin-top: 72px;
}

/* ================================================
   APROACH / PILLARS
   ================================================ */
.approche {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.approche__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
}
.approche__item {
  background: var(--dark);
  padding: 64px 52px;
  text-align: center;
  transition: background 0.4s;
}
.approche__item:hover { background: #101010; }
.approche__symbol {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 28px;
  font-style: italic;
  opacity: 0.7;
}
.approche__number {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(200,169,110,0.35);
  margin-bottom: 12px;
  font-weight: 500;
}
.approche__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}
.approche__text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.services__visual {
  position: relative;
  overflow: hidden;
}
.services__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  display: block;
}
.services__visual:hover img { transform: scale(1.04); }
.services__visual-caption {
  position: absolute;
  bottom: 28px; left: 28px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.45);
  font-weight: 400;
}

.services__panels {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.services__panel {
  flex: 1;
  padding: 80px 72px;
  transition: background 0.4s;
}
.services__panel:hover { background: #0e0e0e; }
.services__panel + .services__panel { border-top: 1px solid var(--border); }

.services__panel .section__eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(200,169,110,0.15);
  letter-spacing: 0;
  font-style: normal;
  margin-bottom: 8px;
}
.services__panel .section__title {
  font-size: 44px;
  margin-bottom: 20px;
}
.services__panel .section__rule--left { margin-bottom: 28px; }

.services__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 32px;
  max-width: 460px;
  font-weight: 300;
}
.services__features {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services__feature {
  font-size: 13px;
  color: var(--cream);
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid var(--border-s);
  position: relative;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.services__feature::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 1px;
  background: var(--gold);
}

/* ================================================
   PORTFOLIO / FILMS
   ================================================ */
.films { background: var(--black); }

.films__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.film-card {
  background: var(--card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.film-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
.film-card__embed {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}
.film-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.film-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,8,0.55);
  transition: opacity 0.4s;
  cursor: pointer;
}
.film-card__play {
  width: 56px; height: 56px;
  border: 1px solid rgba(200,169,110,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s;
}
.film-card__play::after {
  content: '';
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 4px;
}
.film-card:hover .film-card__play {
  border-color: var(--gold);
  transform: scale(1.1);
}
.film-card__meta {
  padding: 22px 28px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.film-card__year {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 500;
}
.film-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
}
.film-card__place {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-align: right;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonial {
  background: var(--dark);
  padding: 72px 60px;
  transition: background 0.4s;
}
.testimonial:hover { background: #0e0e0e; }
.testimonial__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 5px;
  margin-bottom: 28px;
  display: block;
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 32px;
  position: relative;
}
.testimonial__quote::before {
  content: '\201C';
  font-size: 80px;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -16px; left: -8px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial__author {
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.testimonials-carousel { max-width: 800px; margin: 0 auto; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: tslide 0.5s ease; }
@keyframes tslide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(201,169,110,0.25); cursor: pointer; transition: background 0.3s; }
.carousel-dot.active { background: var(--gold); }

/* ================================================
   CTA INSTAGRAM
   ================================================ */
.cta-section {
  position: relative;
  text-align: center;
  padding: 180px 40px;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.cta-section__inner { position: relative; max-width: 600px; margin: 0 auto; }
.cta-section__handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}
.cta-section__sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.footer__brand {}
.footer__logo {
  height: 26px;
  opacity: 0.45;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(154,145,135,0.6);
  font-weight: 400;
  margin-bottom: 20px;
}
.footer__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 280px;
  font-weight: 300;
}
.footer__col-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s;
  font-weight: 300;
}
.footer__links a:hover { color: var(--cream); }
.footer__info-line {
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
  font-weight: 300;
}
.footer__info-line a { color: var(--gold); transition: opacity 0.3s; }
.footer__info-line a:hover { opacity: 0.75; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 11px;
  color: rgba(154,145,135,0.35);
  letter-spacing: 0.08em;
}
.footer__legal {
  display: flex;
  gap: 28px;
}
.footer__legal a {
  font-size: 11px;
  color: rgba(154,145,135,0.35);
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--muted); }

/* ================================================
   PAGE HEADERS (inner pages)
   ================================================ */
.page-header {
  position: relative;
  height: 52vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-header__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-header__overlay { z-index: 1; }
.page-header__content { z-index: 2; }
.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,1) 0%,
    rgba(8,8,8,0.6) 50%,
    rgba(8,8,8,0.25) 100%
  );
}
.page-header__content {
  position: relative;
  padding: 0 48px 72px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.page-header__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.page-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}
.page-header__title em { font-style: italic; color: var(--gold-light); }

/* ================================================
   GALERIE PAGE
   ================================================ */
.gallery-filter {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.gallery-filter__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.gallery-filter__btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 22px 28px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
}
.gallery-filter__btn.active,
.gallery-filter__btn:hover {
  color: var(--cream);
  border-bottom-color: var(--gold);
}

.gallery-grid {
  padding: 64px 48px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  columns: 4;
  gap: 12px;
}
.gallery-item--hidden {
  display: none !important;
}
.gallery-load-more {
  text-align: center;
  padding: 20px 0 80px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__overlay {
  background: rgba(8,8,8,0.35);
}
.gallery-item__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s, transform 0.35s;
  color: var(--gold);
  font-size: 20px;
}
.gallery-item:hover .gallery-item__icon {
  opacity: 1;
  transform: scale(1);
}

.films-section { padding: 80px 0 128px; }
.films-section .container { max-width: var(--max-w); }

/* ================================================
   TARIFS PAGE
   ================================================ */
.pricing { background: var(--black); }

.pricing__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 2;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}

.pricing-card {
  background: var(--dark);
  padding: 56px 52px;
  position: relative;
  transition: background 0.4s;
}
.pricing-card:hover { background: #101010; }
.pricing-card--featured {
  background: #0e0e0e;
}
.pricing-card--featured::before {
  content: 'Plus populaire';
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 18px;
}

.pricing-card__tag {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.pricing-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 8px;
}
.pricing-card__duration {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.pricing-card__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.pricing-card--featured .pricing-card__amount { color: var(--gold-light); }
.pricing-card__currency {
  font-size: 22px;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 44px;
}
.pricing-card__feature {
  font-size: 13.5px;
  color: var(--cream);
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--border-s);
  position: relative;
  font-weight: 300;
}
.pricing-card__feature::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 1px;
  background: var(--gold);
}

/* Add-ons */
.addons { background: var(--dark); border-top: 1px solid var(--border); }
.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.addon-card {
  background: var(--dark);
  padding: 44px 40px;
  transition: background 0.35s;
}
.addon-card:hover { background: #101010; }
.addon-card__icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.addon-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.addon-card__price {
  font-size: 22px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  margin-bottom: 16px;
}
.addon-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

.albums-section { background: var(--black); padding: 100px 0; border-top: 1px solid var(--border); }
.albums__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.album-card {
  border: 1px solid var(--border);
  padding: 40px 36px;
  text-align: center;
  transition: border-color 0.3s, transform 0.35s;
}
.album-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.album-card__photos {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.album-card__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.album-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
}

.pricing-note {
  text-align: center;
  margin-top: 60px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-note strong { color: var(--cream); font-weight: 400; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 80vh;
}
.contact-info {
  background: var(--dark);
  border-right: 1px solid var(--border);
  padding: 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 12px;
}
.contact-info__title em { font-style: italic; color: var(--gold-light); }
.contact-info__sub {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 52px;
  max-width: 340px;
}
.contact-info__items { display: flex; flex-direction: column; gap: 0; margin-bottom: 52px; }
.contact-info__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-s);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info__label {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact-info__value {
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
}
.contact-info__value a { color: var(--cream); transition: color 0.3s; }
.contact-info__value a:hover { color: var(--gold); }
.contact-info__ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 12px 24px;
  transition: background 0.3s, color 0.3s;
}
.contact-info__ig:hover { background: var(--gold); color: var(--black); }

.contact-form-wrap {
  padding: 80px 80px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-wrap .section__eyebrow { margin-bottom: 8px; }
.contact-form-wrap .section__title { font-size: 36px; margin-bottom: 40px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field--full { grid-column: 1 / -1; }
.form-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  padding: 14px 18px;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(154,145,135,0.5); }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a96e' stroke-width='1' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.form-select option { background: var(--dark); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 130px; }

.form-checks {
  margin-bottom: 20px;
}
.form-checks-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.form-checks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s;
}
.form-check:hover { border-color: rgba(200,169,110,0.4); }
.form-check input { display: none; }
.form-check__box {
  width: 14px; height: 14px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.form-check input:checked ~ .form-check__box {
  background: var(--gold);
  border-color: var(--gold);
}
.form-check input:checked ~ .form-check__box::after {
  content: '';
  width: 6px; height: 4px;
  border-left: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  transform: rotate(-45deg) translateY(-1px);
}
.form-check__label { font-size: 12.5px; color: var(--muted); font-weight: 300; transition: color 0.3s; }
.form-check input:checked ~ .form-check__label { color: var(--cream); }

.form-submit {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.form-note {
  font-size: 12px;
  color: rgba(154,145,135,0.5);
  font-weight: 300;
}

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.50s; }
.delay-5 { transition-delay: 0.64s; }

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,8,8,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 28px; right: 36px;
  background: none; border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
  font-weight: 200;
}
.lightbox__close:hover { color: var(--cream); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 36px; }
  .films__grid { grid-template-columns: 1fr 1fr; }
  .addons__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .services__panel { padding: 60px 52px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav {
    padding: 0 24px;
    z-index: 10000;
  }
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #080808;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    padding-top: var(--nav-h);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    border-top: none;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { font-size: 15px; letter-spacing: 0.25em; }
  .nav__burger { display: flex; }

  .services { grid-template-columns: 1fr; }
  .services__visual { height: 55vh; }
  .services__panel { padding: 56px 36px; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .approche__grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding: 64px 36px; border-right: none; border-bottom: 1px solid var(--border); order: 2; }
  .contact-form-wrap { padding: 56px 36px; order: 1; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .gallery-grid { columns: 2; gap: 10px; }

  .albums__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .films__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-checks-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 3; gap: 6px; padding: 32px 16px 60px; }
  .addons__grid { grid-template-columns: 1fr; }
  .albums__grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 40px 28px; }
  .approche__item { padding: 48px 28px; }
  .testimonial { padding: 48px 28px; }
  .page-header__content { padding: 0 20px 52px; }
  .gallery-filter { padding: 0 20px; }
}

/* ================================================
   HERO VIDEO BACKGROUND
   ================================================ */
video.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.hero.loaded video.hero__bg { transform: scale(1); }

/* ================================================
   STRIP PHOTOS TARIFS
   ================================================ */
.tarifs-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 400px;
  overflow: hidden;
}
.tarifs-visual__img { overflow: hidden; }
.tarifs-visual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.tarifs-visual__img:hover img { transform: scale(1.05); }

/* ================================================
   NOS OPTIONS (tarifs)
   ================================================ */
.nos-options { background: var(--black); padding: 100px 0; border-top: 1px solid var(--border); }
.options__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
.option-card {
  background: var(--dark);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.35s;
}
.option-card:hover { background: #101010; }
.option-card__picto {
  width: 160px;
  height: 160px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}
.option-card__picto--rounded {
  border-radius: 50%;
}
.option-card__picto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.option-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.option-card__price {
  font-size: 22px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  margin-bottom: 16px;
}
.option-card__tiers {
  margin: 0 0 20px;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 14px 0;
}
.option-tier {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 5px 4px;
}
.option-tier:not(:last-child) { border-bottom: 1px solid rgba(212,175,55,0.08); }
.option-tier span:last-child { color: var(--gold); }
.option-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ================================================
   CTA VIDÉO BACKGROUND
   ================================================ */
.cta-section--video {
  position: relative;
  overflow: hidden;
}
.cta-section--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-section--video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.75);
  z-index: 1;
}
.cta-section--video .cta-section__inner {
  position: relative;
  z-index: 2;
}

/* ================================================
   CONTACT INFO GALLERY
   ================================================ */
.contact-info__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 36px;
}
.contact-info__gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* ================================================
   RESPONSIVE ADDITIONS
   ================================================ */
@media (max-width: 1024px) {
  .options__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .options__grid { grid-template-columns: 1fr; }
  .tarifs-visual { height: 260px; grid-template-columns: 1fr; }
  .tarifs-visual__img:not(:first-child) { display: none; }
}
