.elementor-5932 .elementor-element.elementor-element-d1d924a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5932 .elementor-element.elementor-element-d1d924a.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-5932 .elementor-element.elementor-element-5e7ea89{width:var( --container-widget-width, 94.074% );max-width:94.074%;--container-widget-width:94.074%;--container-widget-flex-grow:0;}.elementor-5932 .elementor-element.elementor-element-5e7ea89.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-5932 .elementor-element.elementor-element-179d372{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-5932 .elementor-element.elementor-element-d584a84{width:var( --container-widget-width, 95.67% );max-width:95.67%;--container-widget-width:95.67%;--container-widget-flex-grow:0;}.elementor-5932 .elementor-element.elementor-element-d584a84 > .elementor-widget-container{margin:-9px -9px -9px -9px;padding:0px 0px 0px 0px;}.elementor-5932 .elementor-element.elementor-element-d584a84.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-5932 .elementor-element.elementor-element-5e88af9{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-5932 .elementor-element.elementor-element-980e39f > .elementor-widget-container{margin:-11px -11px -11px -11px;}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-5e7ea89 *//* ===========================
   IMPORTS & VARIABLES
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');
 
:root {
  --c-cream:      #f2ece2;
  --c-warm:       #0d0c0a;
  --c-sand:       #c8a96e;
  --c-taupe:      #7a7060;
  --c-bark:       #a89070;
  --c-ink:        #0d0c0a;
  --c-dark:       #070605;
  --c-accent:     #c8a96e;
  --c-gold:       #c8a96e;
  --c-beige-soft: #f2ece2;
  --c-noir:       #0d0c0a;
  --c-noir-mid:   #1a1814;
  --c-noir-light: #252219;
  --c-gold-dim:   rgba(200,169,110,0.18);
  --c-gold-line:  rgba(200,169,110,0.35);
 
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
 
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
}
 
/* ===========================
   HERO
=========================== */
.hero-touch {
  position: relative;
  padding: 120px var(--space-md) !important;
  min-height: 100vh !important;
  height: 100vh !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
 
  box-sizing: border-box !important;
}
 
.hero-touch__bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
}
 
.hero-touch__bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
  display: block;
  position: absolute !important;
  inset: 0 !important;
  transform-origin: center center;
  animation: kenburns 18s ease-in-out infinite alternate;
  opacity: 0.5;
}
 
@keyframes kenburns {
  0%   { transform: scale(1)    translateX(0%)    translateY(0%); }
  50%  { transform: scale(1.06) translateX(-1.5%) translateY(-1%); }
  100% { transform: scale(1.12) translateX(1%)    translateY(-2%); }
}
 
.hero-touch__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,6,5,0.25) 0%,
    rgba(7,6,5,0.45) 50%,
    rgba(7,6,5,0.65) 100%
  );
}
 
.hero-touch::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
 
.hero-touch__inner {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
 
@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(32px); }
  40%  { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}
 
.univers-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
 
.hero-touch__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 var(--space-md);
  letter-spacing: 0.01em;
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
 
.hero-touch__title em {
  font-style: italic;
  color: var(--c-gold);
}
 
.hero-touch__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(242,236,226,0.6);
  line-height: 1.9;
  margin: 0 auto var(--space-lg);
  max-width: 500px;
  letter-spacing: 0.02em;
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
 
.hero-touch__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--c-gold-line);
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}
 
.hero-touch__divider span {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--c-gold-line);
}
 
/* ===========================
   SERVICE SECTIONS
=========================== */
.univers-service {
  padding: var(--space-xl) var(--space-md);
}
 
/* Révélation — fond beige très sombre tirant vers le noir chaud */
.univers-service--revelation {
  background: var(--c-beige-soft);
  position: relative;
}
 
.univers-service--revelation::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-line), transparent);
}
 
/* Atmosphères — noir pur profond */
.univers-service--atmospheres {
  background: var(--c-noir);
  position: relative;
}
 
.univers-service--atmospheres::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-line), transparent);
}
 
.univers-service--atmospheres::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-line), transparent);
}
 
.univers-service__layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}
 
.univers-service__layout--reverse {
  direction: rtl;
}
 
.univers-service__layout--reverse > * {
  direction: ltr;
}
 
/* ===========================
   IMAGE COLUMN — placeholder luxe
=========================== */
.univers-service__image-frame {
  position: relative;
}
 
/* Placeholder élégant en attente de vos photos */
.univers-service__image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #e8e0d4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
/* Supprime l'ancien SVG s'il est présent */
.univers-service__image-placeholder svg {
  display: none;
}
 
/* Croix centrale en tirets — masquée si image présente */
.univers-service__image-placeholder:not(:has(img))::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(107,95,82,0.25);
}
 
/* Texte placeholder centré — masqué si image présente */
.univers-service__image-placeholder:not(:has(img))::after {
  content: 'Votre photo ici';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(107,95,82,0.4);
}
 
/* Version sombre pour Atmosphères */
.univers-service__image-placeholder--dark {
  background: #1a1814;
}
 
.univers-service__image-placeholder--dark:not(:has(img))::before {
  border-color: rgba(200,169,110,0.15);
}
 
.univers-service__image-placeholder--dark:not(:has(img))::after {
  color: rgba(200,169,110,0.3);
}
 
/* Vraie image — couvre tout le placeholder */
.univers-service__image-placeholder img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
 
.univers-service__image-placeholder:hover img {
  transform: scale(1.03);
}
 
/* Bordure déco or décalée */
.univers-service__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  border: 1px solid var(--c-gold-line);
  z-index: -1;
}
 
.univers-service__image-frame--right .univers-service__image-accent {
  bottom: -16px;
  right: auto;
  left: -16px;
}
 
.univers-service__image-accent--dark {
  border-color: rgba(200,169,110,0.2);
}
 
/* ===========================
   CONTENT COLUMN
=========================== */
.univers-service__number {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--c-gold);
  letter-spacing: 0.25em;
  margin-bottom: 0.4rem;
}
 
.univers-service__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--c-taupe);
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(107,95,82,0.15);
}
 
.univers-service--atmospheres .univers-service__label {
  color: rgba(200,169,110,0.45);
  border-bottom-color: rgba(200,169,110,0.12);
}
 
.univers-service__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--c-noir);
  margin: 0 0 0.8rem;
  letter-spacing: 0.02em;
}
 
.univers-service--atmospheres .univers-service__title {
  color: var(--c-beige-soft);
}
 
.univers-service__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--c-gold);
  margin: 0 0 var(--space-md);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
 
.univers-service__body {
  margin-bottom: var(--space-md);
  padding-left: 1.4rem;
  border-left: 1px solid rgba(107,95,82,0.18);
}
 
.univers-service--atmospheres .univers-service__body {
  border-left-color: var(--c-gold-line);
}
 
.univers-service__body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 2;
  color: #5a5040;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
 
.univers-service__body p:last-child {
  margin-bottom: 0;
}
 
.univers-service--atmospheres .univers-service__body p {
  color: rgba(242,236,226,0.5);
}
 
/* Features list */
.univers-service__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
 
.univers-service__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--c-taupe);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(107,95,82,0.08);
}
 
.univers-service__features li:last-child {
  border-bottom: none;
}
 
.univers-service--atmospheres .univers-service__features li {
  color: rgba(200,169,110,0.5);
  border-bottom-color: rgba(200,169,110,0.07);
}
 
.univers-service__features li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.7;
}
 
/* CTA */
.univers-service__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-noir);
  padding: 0.9rem 1.8rem;
  border: 1px solid rgba(107,95,82,0.3);
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, gap 0.3s ease;
  margin-top: 0.5rem;
}
 
.univers-service__cta::after {
  content: '→';
  font-size: 0.85em;
  transition: transform 0.3s ease;
}
 
.univers-service__cta:hover {
  background: var(--c-noir);
  border-color: var(--c-noir);
  color: var(--c-gold);
  gap: 1.4rem;
}
 
.univers-service__cta:hover::after {
  transform: translateX(4px);
}
 
.univers-service--atmospheres .univers-service__cta {
  color: var(--c-beige-soft);
  border-color: var(--c-gold-line);
}
 
.univers-service--atmospheres .univers-service__cta:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-noir);
}
 
/* ===========================
   SÉPARATEUR
=========================== */
.univers-separator {
  background: var(--c-noir-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.5rem var(--space-md);
  color: var(--c-gold-line);
}
 
.univers-separator__line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--c-gold-line);
}
 
/* ===========================
   CITATION FINALE
=========================== */
.univers-quote {
  background: var(--c-noir);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
}
 
.univers-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-gold-line), transparent);
}
 
.univers-quote__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-style: normal;
  color: var(--c-beige-soft);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 640px;
  border: none;
  padding: 0;
  opacity: 0.9;
}
 
.univers-quote__text em {
  font-style: italic;
  color: var(--c-gold);
}
 
.univers-quote__text::before,
.univers-quote__text::after {
  display: none;
}
 
/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 3rem;
  }
 
  .hero-touch {
    min-height: 100vh !important;
    height: 100vh !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 80px 1.5rem 60px !important;
    background: #0d0c0a !important;
  }
 
  .hero-touch__bg,
  .hero-touch__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
 
  .hero-touch__bg-img {
    object-position: center center;
    opacity: 1;
  }
 
  .hero-touch__overlay {
    background: linear-gradient(
      to bottom,
      rgba(7,6,5,0.05) 0%,
      rgba(7,6,5,0.20) 55%,
      rgba(7,6,5,0.42) 100%
    );
  }
 
  .hero-touch__inner {
    max-width: 100%;
    padding: 0 0.5rem;
  }
 
  .hero-touch__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
 
  .hero-touch__desc {
    font-size: 0.9rem;
    max-width: 100%;
  }
 
  .univers-service__layout,
  .univers-service__layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }
 
  .univers-service__layout--reverse .univers-service__image-col {
    order: -1;
  }
 
  .univers-service__image-accent {
    display: none;
  }
 
  .univers-service__body {
    padding-left: 1rem;
  }
 
  .univers-service__image-placeholder {
    aspect-ratio: 4 / 3;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-980e39f *//* ===========================
   IMPORTS & VARIABLES
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');
 
:root {
  --c-cream:      #f2ece2;
  --c-warm:       #0d0c0a;
  --c-sand:       #c8a96e;
  --c-taupe:      #7a7060;
  --c-bark:       #a89070;
  --c-ink:        #0d0c0a;
  --c-dark:       #070605;
  --c-accent:     #c8a96e;
  --c-gold:       #c8a96e;
  --c-beige-soft: #f2ece2;
  --c-noir:       #0d0c0a;
  --c-noir-mid:   #1a1814;
  --c-noir-light: #252219;
  --c-gold-dim:   rgba(200,169,110,0.18);
  --c-gold-line:  rgba(200,169,110,0.35);
 
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
 
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
}
 
/* ===========================
   HERO
=========================== */
.univers-hero {
  position: relative;
  padding: var(--space-xl) var(--space-md);
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--c-noir);
}
 
.univers-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
 
.univers-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center center;
  animation: kenburns 18s ease-in-out infinite alternate;
  opacity: 0.55;
}
 
@keyframes kenburns {
  0%   { transform: scale(1)    translateX(0%)    translateY(0%); }
  50%  { transform: scale(1.06) translateX(-1.5%) translateY(-1%); }
  100% { transform: scale(1.12) translateX(1%)    translateY(-2%); }
}
 
.univers-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,6,5,0.55) 0%,
    rgba(7,6,5,0.65) 50%,
    rgba(7,6,5,0.85) 100%
  );
}
 
/* Fine ligne or en bas du hero */
.univers-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
 
.univers-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
 
@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(32px); }
  40%  { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}
 
.univers-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
 
.univers-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 var(--space-md);
  letter-spacing: 0.01em;
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
 
.univers-hero__title em {
  font-style: italic;
  color: var(--c-gold);
}
 
.univers-hero__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(242,236,226,0.6);
  line-height: 1.9;
  margin: 0 auto var(--space-lg);
  max-width: 500px;
  letter-spacing: 0.02em;
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
 
.univers-hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--c-gold-line);
  animation: heroFadeUp 3s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}
 
.univers-hero__divider span {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--c-gold-line);
}
 
/* ===========================
   SERVICE SECTIONS
=========================== */
.univers-service {
  padding: var(--space-xl) var(--space-md);
}
 
/* Révélation — fond beige très sombre tirant vers le noir chaud */
.univers-service--revelation {
  background: var(--c-beige-soft);
  position: relative;
}
 
.univers-service--revelation::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-line), transparent);
}
 
/* Atmosphères — noir pur profond */
.univers-service--atmospheres {
  background: var(--c-noir);
  position: relative;
}
 
.univers-service--atmospheres::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-line), transparent);
}
 
.univers-service--atmospheres::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-line), transparent);
}
 
.univers-service__layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}
 
.univers-service__layout--reverse {
  direction: rtl;
}
 
.univers-service__layout--reverse > * {
  direction: ltr;
}
 
/* ===========================
   IMAGE COLUMN — placeholder luxe
=========================== */
.univers-service__image-frame {
  position: relative;
}
 
/* Placeholder élégant en attente de vos photos */
.univers-service__image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #e8e0d4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
/* Supprime l'ancien SVG s'il est présent */
.univers-service__image-placeholder svg {
  display: none;
}
 
/* Croix centrale en tirets */
.univers-service__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(107,95,82,0.25);
}
 
/* Texte placeholder centré */
.univers-service__image-placeholder::after {
  content: 'Votre photo ici';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(107,95,82,0.4);
}
 
/* Version sombre pour Atmosphères */
.univers-service__image-placeholder--dark {
  background: #1a1814;
}
 
.univers-service__image-placeholder--dark::before {
  border-color: rgba(200,169,110,0.15);
}
 
.univers-service__image-placeholder--dark::after {
  color: rgba(200,169,110,0.3);
}
 
/* Si vous ajoutez une vraie image */
.univers-service__image-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
 
/* Bordure déco or décalée */
.univers-service__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  border: 1px solid var(--c-gold-line);
  z-index: -1;
}
 
.univers-service__image-frame--right .univers-service__image-accent {
  bottom: -16px;
  right: auto;
  left: -16px;
}
 
.univers-service__image-accent--dark {
  border-color: rgba(200,169,110,0.2);
}
 
/* ===========================
   CONTENT COLUMN
=========================== */
.univers-service__number {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--c-gold);
  letter-spacing: 0.25em;
  margin-bottom: 0.4rem;
}
 
.univers-service__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--c-taupe);
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(107,95,82,0.15);
}
 
.univers-service--atmospheres .univers-service__label {
  color: rgba(200,169,110,0.45);
  border-bottom-color: rgba(200,169,110,0.12);
}
 
.univers-service__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--c-noir);
  margin: 0 0 0.8rem;
  letter-spacing: 0.02em;
}
 
.univers-service--atmospheres .univers-service__title {
  color: var(--c-beige-soft);
}
 
.univers-service__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--c-gold);
  margin: 0 0 var(--space-md);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
 
.univers-service__body {
  margin-bottom: var(--space-md);
  padding-left: 1.4rem;
  border-left: 1px solid rgba(107,95,82,0.18);
}
 
.univers-service--atmospheres .univers-service__body {
  border-left-color: var(--c-gold-line);
}
 
.univers-service__body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 2;
  color: #5a5040;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
 
.univers-service__body p:last-child {
  margin-bottom: 0;
}
 
.univers-service--atmospheres .univers-service__body p {
  color: rgba(242,236,226,0.5);
}
 
/* Features list */
.univers-service__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
 
.univers-service__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--c-taupe);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(107,95,82,0.08);
}
 
.univers-service__features li:last-child {
  border-bottom: none;
}
 
.univers-service--atmospheres .univers-service__features li {
  color: rgba(200,169,110,0.5);
  border-bottom-color: rgba(200,169,110,0.07);
}
 
.univers-service__features li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.7;
}
 
/* CTA */
.univers-service__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-noir);
  padding: 0.9rem 1.8rem;
  border: 1px solid rgba(107,95,82,0.3);
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, gap 0.3s ease;
  margin-top: 0.5rem;
}
 
.univers-service__cta::after {
  content: '→';
  font-size: 0.85em;
  transition: transform 0.3s ease;
}
 
.univers-service__cta:hover {
  background: var(--c-noir);
  border-color: var(--c-noir);
  color: var(--c-gold);
  gap: 1.4rem;
}
 
.univers-service__cta:hover::after {
  transform: translateX(4px);
}
 
.univers-service--atmospheres .univers-service__cta {
  color: var(--c-beige-soft);
  border-color: var(--c-gold-line);
}
 
.univers-service--atmospheres .univers-service__cta:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-noir);
}
 
/* ===========================
   SÉPARATEUR
=========================== */
.univers-separator {
  background: var(--c-noir-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.5rem var(--space-md);
  color: var(--c-gold-line);
}
 
.univers-separator__line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--c-gold-line);
}
 
/* ===========================
   CITATION FINALE
=========================== */
.univers-quote {
  background: var(--c-noir);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
}
 
.univers-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-gold-line), transparent);
}
 
.univers-quote__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-style: normal;
  color: var(--c-beige-soft);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 640px;
  border: none;
  padding: 0;
  opacity: 0.9;
}
 
.univers-quote__text em {
  font-style: italic;
  color: var(--c-gold);
}
 
.univers-quote__text::before,
.univers-quote__text::after {
  display: none;
}
 
/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 3rem;
  }
 
  .univers-service__layout,
  .univers-service__layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }
 
  .univers-service__layout--reverse .univers-service__image-col {
    order: -1;
  }
 
  .univers-service__image-accent {
    display: none;
  }
 
  .univers-service__body {
    padding-left: 1rem;
  }
 
  .univers-service__image-placeholder {
    aspect-ratio: 4 / 3;
  }/* End custom CSS */