.elementor-28501 .elementor-element.elementor-element-a7a1d1c{--display:flex;}.elementor-28501 .elementor-element.elementor-element-933af53{width:100%;max-width:100%;}.elementor-28501 .elementor-element.elementor-element-933af53.elementor-element{--flex-grow:1;--flex-shrink:1;}.elementor-28501 .elementor-element.elementor-element-ab5b2b5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-933af53 */*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #e8763a;
  --dark: #1a1a1a;
  --medium: #3a3a3a;
  --light: #666;
  --bg: #e8e8e4;
  --bg2: #deded9;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1300px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}

.hero-logo {
  position: absolute;
  top: 36px;
  right: 56px;
  z-index: 10;
}

.hero-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 56px 64px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 18px;
  color: #ccc;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 20px 48px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover {
  background: #cf6530;
}

/* ── LAYOUT ── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 64px 0;
  border-bottom: 2px solid #d0d0cc;
}

.section:last-of-type {
  border-bottom: none;
}

/* ── TYPOGRAPHIE ── */
.label {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  font-weight: 700;
}

h2 {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}

p {
  font-size: 16px;
  color: var(--medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

p strong {
  color: var(--dark);
  font-weight: 700;
}

/* ── SECTION 1 : LAYOUT DEUX COLONNES ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concept-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
}

/* Galerie portraits 3x3 */
.gallery-portraits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-portraits img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 24px;
}

/* Bloc 10 minutes */
.deroulement-box {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 6px solid var(--orange);
  padding: 32px 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.deroulement-titre {
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 22px;
}

.deroulement-puces {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.deroulement-puce {
  display: flex;
  gap: 16px;
  align-items: center;
}

.puce-rond {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: transparent;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.puce-rond::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.deroulement-puce p {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.6;
}

.deroulement-conclusion {
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
  padding-top: 18px;
  border-top: 2px solid #f0f0ec;
}

/* Livrables */
.livrables-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.livrables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.livrable {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  border-left: 4px solid var(--dark);
}

.livrable-gift {
  border-left-color: var(--orange);
  background: #fff8f3;
}

.livrable-chiffre {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.livrable-gift .livrable-chiffre {
  color: var(--orange);
  font-size: 34px;
}

.livrable-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.livrable-detail {
  font-size: 12px;
  color: var(--light);
  line-height: 1.5;
}

/* ── SECTION 2 : CE QUE ÇA CHANGE ── */
.ce-que-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 48px;
}

.vignette-right {
  float: right;
  width: 280px;
  margin: 0 0 24px 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.vignette-right img {
  width: 100%;
  height: auto;
  display: block;
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* ── FINE ART ── */
.fineartblock {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px 48px;
}

.fineartblock-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

.fineartblock-texte .label {
  color: var(--orange);
}

.fineartblock-texte h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.fineartblock-texte p {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 16px;
}

.fineartblock-specs {
  list-style: none;
  padding: 0;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

.fineartblock-specs li {
  font-size: 13px;
  color: #ccc;
  padding: 4px 0;
  line-height: 1.5;
}

.fineartblock-specs li::before {
  content: '✓ ';
  color: var(--orange);
  font-weight: 700;
}

/* ── CARDS CONTEXTE ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  border-top: 3px solid var(--orange);
}

.card-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}

.card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card p {
  font-size: 14px;
  color: var(--light);
  margin: 0;
  line-height: 1.6;
}

/* ── EXTEND BOX ── */
.extend-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 48px;
}

.extend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 24px;
}

.extend-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1.5px solid #d0d0ca;
  padding: 18px 20px;
}

.extend-icon {
  width: 40px;
  height: 40px;
  background: #fff3ec;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.extend-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.extend-item h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.extend-item p {
  font-size: 13px;
  color: var(--light);
  margin: 0;
  line-height: 1.6;
}

/* ── GALERIE AÉRIENNES ── */
.bande-aerienne,
.bande-aerienne img,
picture.bande-aerienne img {
  width: 100% !important;
  height: 600px !important;
  object-fit: cover !important;
  border-radius: var(--radius-sm);
  display: block !important;
  cursor: zoom-in;
}

.gallery-land {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 32px 0;
}

.gallery-land img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

/* ── FAQ ── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
}

details {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}

details[open] {
  border-color: var(--orange);
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 24px;
  color: var(--orange);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}

details[open] summary::after {
  content: '–';
}

details p {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--medium);
  margin: 0;
  line-height: 1.75;
  border-top: 1px solid #f0f0ec;
}

.vignette-faq {
  float: right;
  width: 340px;
  margin: 0 0 24px 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.vignette-faq img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── CTA ── */
.cta-bottom {
  background: var(--dark);
  padding: 80px 40px;
  text-align: center;
}

.cta-bottom h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-bottom p {
  color: #999;
  margin-bottom: 36px;
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
footer {
  background: #2a2a2a;
  padding: 52px 40px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

footer h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 14px;
  font-weight: 700;
}

footer p {
  font-size: 13px;
  color: #999;
  line-height: 1.85;
  margin: 0;
}

footer a {
  color: #bbb;
  text-decoration: none;
}

footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid #222;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .col-right {
    position: static;
  }

  .livrables-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }

  .extend-grid {
    grid-template-columns: 1fr;
  }

  .fineartblock {
    grid-template-columns: 1fr;
  }

  .vignette-right,
  .vignette-faq {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 480px;
  }

  .hero-logo {
    top: 16px;
    right: 20px;
  }

  .hero-logo img {
    height: 50px;
  }

  .hero-content {
    padding: 0 24px 48px;
  }

  .wrap {
    padding: 0 20px;
  }

  .livrables-grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .gallery-portraits {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}/* End custom CSS */