/* --- VARIABLES --- */

:root {

  --bg-color: #fdfcf8;
  
  --bg-alt: #f4f1ea;
  
  --text-color: #4a4a4a;
  
  --accent-color: #8c7b6c;
  
  --white: #ffffff;
  
  --font-serif: "Playfair Display", serif;
  
  --font-sans: "Lato", sans-serif;
  
  
  
  /* Variables Spécifiques Page Contact */
  
  --contact-bg: #f9f7f2;
  
  --contact-text: #2a2220;
  
  --contact-btn: #3e2f28;
  
  --contact-gold: #8c7b6c;
  
  }
  
  
  
  * {
  
  margin: 0;
  
  padding: 0;
  
  box-sizing: border-box;
  
  }
  
  
  
  body {
  
  background-color: var(--bg-color);
  
  color: var(--text-color);
  
  font-family: var(--font-sans);
  
  line-height: 1.6;
  
  font-weight: 300;
  
  }
  
  
  
  /* --- REGLAGE SPÉCIFIQUE PAGE CONTACT (SCROLL ACTIVÉ) --- */
  
  body.contact-page-body {
  
  min-height: 100vh; /* Au moins la hauteur de l'écran */
  
  background-color: var(--contact-bg);
  
  /* Scroll autorisé si ça dépasse */
  
  }
  
  
  
  h1,
  
  h2,
  
  h3,
  
  .signature {
  
  font-family: var(--font-serif);
  
  color: #1a1a1a;
  
  }
  
  
  
  a {
  
  text-decoration: none;
  
  color: inherit;
  
  transition: 0.3s;
  
  }
  
  
  
  ul {
  
  list-style: none;
  
  }
  
  
  
  /* --- NAVIGATION GENERALE (Site) --- */
  
  nav {
  
  display: flex;
  
  justify-content: space-between;
  
  align-items: center;
  
  padding: 0 5%;
  
  height: 80px;
  
  background-color: #ffffff;
  
  position: fixed;
  
  width: 100%;
  
  top: 0;
  
  z-index: 1000;
  
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  
  }
  
  
  
  /* --- STYLE DU BOUTON "PRENDRE RDV" --- */
  
  .btn-rdv {
  
  display: inline-block;
  
  background: linear-gradient(to bottom, #6d4c41 0%, #4e342e 100%);
  
  color: #ffffff !important;
  
  padding: 12px 24px;
  
  border-radius: 3px;
  
  border: 1px solid #3e2723;
  
  text-decoration: none;
  
  font-family: "Lato", sans-serif;
  
  font-weight: 700;
  
  font-size: 13px;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  
  transition: all 0.3s ease;
  
  }
  
  
  
  .btn-rdv:hover {
  
  background: linear-gradient(to bottom, #5d4037 0%, #3e2723 100%);
  
  transform: translateY(-2px);
  
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.35);
  
  cursor: pointer;
  
  }
  
  
  
  /* Groupe Gauche global */
  
  .nav-left-group {
  
  display: flex;
  
  align-items: center;
  
  gap: 20px;
  
  }
  
  
  
  /* Les icônes réseaux sociaux */
  
  .nav-socials {
  
  display: flex;
  
  gap: 1.5rem;
  
  }
  
  .nav-socials a {
  
  font-size: 1.2rem;
  
  color: #4a4a4a;
  
  transition: all 0.3s ease;
  
  }
  
  .nav-socials a:hover {
  
  color: var(--accent-color);
  
  transform: translateY(-3px);
  
  }
  
  
  
  .nav-separator {
  
  color: #ddd;
  
  font-weight: 300;
  
  font-size: 1.2rem;
  
  }
  
  
  
  /* --- LE BLOC TEXTE (Béziers + Distance) --- */
  
  .nav-location-block {
  
  display: flex;
  
  flex-direction: column;
  
  line-height: 1.3;
  
  }
  
  
  
  .location-main {
  
  font-family: "Lato", sans-serif;
  
  font-weight: 700;
  
  font-size: 0.85rem;
  
  color: #1a1a1a;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  
  }
  
  
  
  .location-sub {
  
  font-family: "Playfair Display", serif;
  
  font-style: italic;
  
  font-size: 0.8rem;
  
  color: var(--accent-color);
  
  }
  
  
  
  /* --- LE CONTENEUR DU LOGO (MÉDAILLON) --- */
  
  .logo-center {
  
  position: absolute;
  
  left: 50%;
  
  transform: translateX(-50%);
  
  top: 0;
  
  z-index: 1100;
  
  width: 160px;
  
  height: 160px;
  
  background-color: var(--bg-color);
  
  border-radius: 50%;
  
  overflow: hidden;
  
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
  
  border: 1px solid rgba(140, 123, 108, 0.1);
  
  }
  
  
  
  /* --- IMAGE DU LOGO --- */
  
  .logo-image {
  
  width: 100%;
  
  height: 100%;
  
  position: absolute;
  
  top: 0;
  
  left: 0;
  
  object-fit: contain;
  
  mix-blend-mode: multiply;
  
  }
  
  
  
  /* Navigation Droite */
  
  .nav-links {
  
  display: flex;
  
  gap: 2.5rem;
  
  align-items: center;
  
  }
  
  .nav-links a {
  
  font-size: 0.85rem;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  
  }
  
  .nav-links a:hover {
  
  color: var(--accent-color);
  
  }
  
  
  
  /* --- HERO SECTION --- */
  
  .hero {
  
  height: 100vh;
  
  background-image: url("./fond.jpg");
  
  background-size: cover;
  
  background-position: center;
  
  display: flex;
  
  align-items: flex-end;
  
  justify-content: center;
  
  text-align: center;
  
  position: relative;
  
  padding-bottom: 80px;
  
  }
  
  
  
  .hero-overlay {
  
  position: absolute;
  
  top: 0;
  
  left: 0;
  
  width: 100%;
  
  height: 100%;
  
  background: rgba(0, 0, 0, 0.2);
  
  }
  
  
  
  .hero-content {
  
  position: relative;
  
  z-index: 2;
  
  color: #fff;
  
  max-width: 100%;
  
  padding: 0 20px;
  
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  
  }
  
  
  
  .hero h1 {
  
  font-size: 3.5vw;
  
  margin-bottom: 0.5rem;
  
  color: #fff;
  
  font-family: "Pinyon Script", cursive;
  
  font-style: normal;
  
  white-space: nowrap;
  
  }
  
  
  
  .hero p {
  
  font-size: 1.1rem;
  
  margin-bottom: 2.5rem;
  
  font-weight: 400;
  
  letter-spacing: 2px;
  
  text-transform: none;
  
  font-family: "Pinyon Script", cursive;
  
  }
  
  
  
  .btn-primary {
  
  background-color: var(--white);
  
  color: #1a1a1a;
  
  padding: 1rem 2.5rem;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  
  font-size: 0.8rem;
  
  border: none;
  
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  
  }
  
  .btn-primary:hover {
  
  background-color: var(--accent-color);
  
  color: var(--white);
  
  }
  
  
  
  @media (max-width: 900px) {
  
  .hero h1 {
  
  font-size: 2.5rem;
  
  white-space: normal;
  
  }
  
  }
  
  
  
  /* --- SECTION RÉALISATIONS --- */
  
  .portfolio-section {
  
  padding: 80px 20px;
  
  background-color: #fdfcf8;
  
  text-align: center;
  
  }
  
  
  
  .section-title {
  
  font-family: "Playfair Display", serif;
  
  font-size: 2.8rem;
  
  color: #3e2723;
  
  margin-bottom: 10px;
  
  font-style: italic;
  
  }
  
  
  
  .section-subtitle {
  
  font-size: 0.9rem;
  
  color: #8d6e63;
  
  margin-bottom: 50px;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;
  
  }
  
  
  
  /* La Grille (3 colonnes) */
  
  .portfolio-grid {
  
  display: grid;
  
  grid-template-columns: repeat(3, 1fr);
  
  gap: 30px;
  
  max-width: 1300px;
  
  margin: 0 auto;
  
  }
  
  
  
  /* La Carte */
  
  .portfolio-card {
  
  background: #ffffff;
  
  border: 1px solid #f0f0f0;
  
  transition: transform 0.3s ease;
  
  }
  
  
  
  /* L'image */
  
  .image-box {
  
  width: 100%;
  
  height: 400px;
  
  overflow: hidden;
  
  }
  
  
  
  .image-box img {
  
  width: 100%;
  
  height: 100%;
  
  object-fit: cover;
  
  transition: transform 0.8s ease;
  
  }
  
  
  
  /* Le texte */
  
  .text-box {
  
  padding: 25px;
  
  text-align: left;
  
  }
  
  
  
  .text-box h3 {
  
  font-family: "Playfair Display", serif;
  
  font-size: 1.4rem;
  
  color: #3e2723;
  
  margin: 0 0 5px 0;
  
  }
  
  
  
  .text-box p {
  
  font-family: "Lato", sans-serif;
  
  font-size: 0.95rem;
  
  color: #777;
  
  margin: 0;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  
  font-size: 12px;
  
  }
  
  
  
  /* Effet au survol */
  
  .portfolio-card:hover .image-box img {
  
  transform: scale(1.08);
  
  }
  
  
  
  .portfolio-card:hover {
  
  transform: translateY(-5px);
  
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  
  }
  
  
  
  /* --- RESTE DU SITE (LAYOUT) --- */
  
  .section-padding {
  
  padding: 6rem 5%;
  
  }
  
  .container {
  
  max-width: 1200px;
  
  margin: 0 auto;
  
  }
  
  .bg-cream {
  
  background-color: var(--bg-alt);
  
  }
  
  .section-header {
  
  text-align: center;
  
  margin-bottom: 4rem;
  
  }
  
  .section-header h2 {
  
  font-size: 2.5rem;
  
  margin-bottom: 0.5rem;
  
  font-style: italic;
  
  }
  
  .section-header p {
  
  color: #888;
  
  font-size: 0.9rem;
  
  }
  
  
  
  /* Portrait / À Propos */
  
  .split-layout {
  
  display: flex;
  
  align-items: center;
  
  gap: 4rem;
  
  }
  
  .image-box,
  
  .text-box {
  
  flex: 1;
  
  }
  
  
  
  .portrait {
  
  height: 500px;
  
  background-image: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=1000");
  
  background-size: cover;
  
  background-position: center;
  
  box-shadow: 20px 20px 0px 0px rgba(140, 123, 108, 0.2);
  
  border: 1px solid rgba(0, 0, 0, 0.05);
  
  }
  
  
  
  .subtitle {
  
  text-transform: uppercase;
  
  color: var(--accent-color);
  
  letter-spacing: 1px;
  
  font-size: 0.85rem;
  
  font-weight: 600;
  
  margin-bottom: 1.5rem;
  
  }
  
  .signature {
  
  font-family: "Pinyon Script", cursive;
  
  font-size: 3.5rem;
  
  color: #8c7b6c;
  
  margin-top: 2rem;
  
  transform: rotate(-5deg);
  
  }
  
  
  
  /* Footer */
  
  footer {
  
  background-color: #2c2c2c;
  
  color: #fff;
  
  padding: 4rem 5% 2rem;
  
  }
  
  .footer-content {
  
  display: flex;
  
  justify-content: space-between;
  
  gap: 2rem;
  
  }
  
  .footer-col h3 {
  
  margin-bottom: 1rem;
  
  font-size: 1.2rem;
  
  color: #fff;
  
  }
  
  .footer-col p {
  
  color: #aaa;
  
  }
  
  
  
  @media (max-width: 768px) {
  
  .nav-links {
  
  display: none;
  
  }
  
  .split-layout {
  
  flex-direction: column;
  
  }
  
  .portrait {
  
  height: 400px;
  
  }
  
  }
  
  
  
  /* --- PAGE RENDEZ-VOUS --- */
  
  
  
  .booking-container {
  
  display: flex;
  
  height: 100vh;
  
  padding-top: 80px;
  
  }
  
  
  
  .booking-image {
  
  flex: 1;
  
  background-size: cover;
  
  background-position: center;
  
  position: relative;
  
  display: flex;
  
  align-items: flex-end;
  
  }
  
  
  
  .booking-overlay {
  
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  
  width: 100%;
  
  padding: 3rem;
  
  color: white;
  
  }
  
  .booking-overlay h3 {
  
  font-family: var(--font-serif);
  
  font-size: 2rem;
  
  margin-bottom: 0.5rem;
  
  color: #fff;
  
  }
  
  
  
  .booking-form-wrapper {
  
  flex: 1;
  
  background-color: var(--bg-color);
  
  overflow-y: auto;
  
  padding: 90px 5% 3rem;
  
  }
  
  
  
  .booking-form-wrapper h2 {
  
  font-family: var(--font-serif);
  
  font-size: 2.2rem;
  
  color: #5d4037;
  
  text-align: left;
  
  margin-bottom: 0.5rem;
  
  }
  
  
  
  .form-subtitle {
  
  color: #888;
  
  margin-bottom: 2rem;
  
  text-align: left;
  
  }
  
  
  
  .form-group {
  
  display: flex;
  
  flex-direction: column;
  
  gap: 0.5rem;
  
  }
  
  .form-row {
  
  display: flex;
  
  gap: 1rem;
  
  }
  
  
  
  label {
  
  font-size: 0.85rem;
  
  font-weight: 600;
  
  text-transform: uppercase;
  
  color: #5d4037;
  
  letter-spacing: 0.5px;
  
  text-align: left;
  
  }
  
  
  
  input,
  
  select,
  
  textarea {
  
  padding: 12px 15px;
  
  border: 1px solid #ddd;
  
  border-radius: 4px;
  
  font-family: var(--font-sans);
  
  font-size: 1rem;
  
  background-color: #fafafa;
  
  transition: 0.3s;
  
  }
  
  
  
  input:focus,
  
  select:focus,
  
  textarea:focus {
  
  outline: none;
  
  border-color: var(--accent-color);
  
  background-color: #fff;
  
  box-shadow: 0 0 0 3px rgba(140, 123, 108, 0.1);
  
  }
  
  
  
  .btn-submit {
  
  background-color: #5d4037;
  
  color: white;
  
  padding: 15px;
  
  border: none;
  
  font-size: 1rem;
  
  font-weight: bold;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  
  cursor: pointer;
  
  margin-top: 1rem;
  
  transition: 0.3s;
  
  }
  
  .btn-submit:hover {
  
  background-color: var(--accent-color);
  
  transform: translateY(-2px);
  
  }
  
  
  
  .back-link {
  
  font-size: 0.8rem;
  
  color: #666;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  
  }
  
  .back-link:hover {
  
  color: var(--accent-color);
  
  }
  
  
  
  /* RESPONSIVE (Mobile) - Page RDV */
  
  @media (max-width: 900px) {
  
  .booking-container {
  
  flex-direction: column;
  
  height: auto;
  
  }
  
  .booking-image {
  
  height: 250px;
  
  }
  
  .booking-form-wrapper {
  
  padding: 40px 2rem 2rem;
  
  }
  
  .booking-form-wrapper h2 {
  
  font-size: 1.6rem;
  
  }
  
  }
  
  
  
  /* --- STYLES PRESTATIONS & DEVIS --- */
  
  .services-grid {
  
  display: grid;
  
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  
  gap: 2.5rem;
  
  margin-top: 3rem;
  
  }
  
  
  
  .service-card {
  
  background: #fff;
  
  border: 1px solid #e0e0e0;
  
  padding: 3rem 2rem;
  
  text-align: center;
  
  transition: all 0.4s ease;
  
  position: relative;
  
  display: flex;
  
  flex-direction: column;
  
  justify-content: space-between;
  
  height: 100%;
  
  }
  
  
  
  .service-card:hover {
  
  transform: translateY(-5px);
  
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  
  border-color: var(--accent-color);
  
  }
  
  
  
  .service-icon {
  
  font-size: 2rem;
  
  color: var(--accent-color);
  
  margin-bottom: 1.5rem;
  
  }
  
  
  
  .service-card h3 {
  
  font-family: var(--font-serif);
  
  font-size: 1.5rem;
  
  margin-bottom: 1rem;
  
  color: #1a1a1a;
  
  }
  
  
  
  .service-desc {
  
  color: #666;
  
  font-size: 0.95rem;
  
  margin-bottom: 2rem;
  
  flex-grow: 1;
  
  }
  
  
  
  .service-buttons {
  
  display: flex;
  
  flex-direction: column;
  
  gap: 0.8rem;
  
  }
  
  
  
  .btn-learn-more {
  
  font-size: 0.8rem;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  
  color: #888;
  
  border-bottom: 1px solid transparent;
  
  padding-bottom: 2px;
  
  }
  
  .btn-learn-more:hover {
  
  color: var(--accent-color);
  
  border-color: var(--accent-color);
  
  }
  
  
  
  .btn-quote {
  
  background-color: var(--accent-color);
  
  color: #fff;
  
  padding: 12px;
  
  text-transform: uppercase;
  
  font-size: 0.8rem;
  
  letter-spacing: 1px;
  
  border-radius: 3px;
  
  font-weight: 600;
  
  transition: 0.3s;
  
  }
  
  .btn-quote:hover {
  
  background-color: #5d4037;
  
  color: #fff;
  
  }
  
  
  
  .devis-wrapper {
  
  background-color: var(--bg-alt);
  
  min-height: 100vh;
  
  display: flex;
  
  justify-content: center;
  
  align-items: center;
  
  padding: 120px 20px 60px;
  
  }
  
  
  
  .devis-container {
  
  background: #fff;
  
  max-width: 800px;
  
  width: 100%;
  
  padding: 4rem;
  
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  
  border-top: 5px solid var(--accent-color);
  
  }
  
  
  
  .devis-header {
  
  text-align: center;
  
  margin-bottom: 3rem;
  
  }
  
  .devis-header h2 {
  
  font-size: 2.5rem;
  
  color: #5d4037;
  
  margin: 0.5rem 0;
  
  }
  
  
  
  .form-section-title {
  
  font-family: var(--font-sans);
  
  font-size: 0.85rem;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;
  
  color: #aaa;
  
  margin-bottom: 1.5rem;
  
  border-bottom: 1px solid #eee;
  
  padding-bottom: 10px;
  
  }
  
  
  
  .form-divider {
  
  border: 0;
  
  height: 1px;
  
  background: #eee;
  
  margin: 2rem 0;
  
  }
  
  
  
  .btn-submit-devis {
  
  background-color: #5d4037;
  
  color: white;
  
  width: 100%;
  
  padding: 18px;
  
  border: none;
  
  font-size: 1rem;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;
  
  font-weight: bold;
  
  cursor: pointer;
  
  margin-top: 1rem;
  
  transition: 0.3s;
  
  }
  
  .btn-submit-devis:hover {
  
  background-color: var(--accent-color);
  
  }
  
  
  
  @media (max-width: 768px) {
  
  .devis-container {
  
  padding: 2rem;
  
  }
  
  .form-row {
  
  flex-direction: column;
  
  gap: 0;
  
  }
  
  }
  
  
  
  /* --- PAGINATION (LES POINTS) --- */
  
  .carousel-dots {
  
  display: none; /* Caché sur PC */
  
  justify-content: center;
  
  gap: 12px;
  
  margin-top: 25px;
  
  }
  
  
  
  .dot {
  
  width: 12px;
  
  height: 12px;
  
  background-color: #e0e0e0;
  
  border-radius: 50%;
  
  transition: all 0.3s ease;
  
  }
  
  
  
  .dot.active {
  
  background-color: #5d4037;
  
  transform: scale(1.3);
  
  }
  
  
  
  /* --- STYLE PAGE HISTOIRE --- */
  
  
  
  .page-header {
  
  height: 60vh;
  
  min-height: 400px;
  
  background-image: url("./fond.jpg");
  
  background-size: cover;
  
  background-position: center;
  
  position: relative;
  
  display: flex;
  
  align-items: center;
  
  justify-content: center;
  
  text-align: center;
  
  margin-bottom: 0;
  
  }
  
  
  
  .header-overlay {
  
  position: absolute;
  
  top: 0;
  
  left: 0;
  
  width: 100%;
  
  height: 100%;
  
  background: rgba(0, 0, 0, 0.4);
  
  }
  
  
  
  .header-content {
  
  position: relative;
  
  z-index: 2;
  
  color: #fff;
  
  }
  
  
  
  .header-content h1 {
  
  font-family: "Playfair Display", serif;
  
  font-size: 3.5rem;
  
  font-style: italic;
  
  margin-bottom: 10px;
  
  }
  
  
  
  .header-content p {
  
  font-family: "Lato", sans-serif;
  
  text-transform: uppercase;
  
  letter-spacing: 4px;
  
  font-size: 0.9rem;
  
  }
  
  
  
  /* 2. Section Portrait & Texte */
  
  .about-full-section {
  
  padding: 100px 5%;
  
  background-color: #fff;
  
  }
  
  
  
  .split-layout {
  
  display: flex;
  
  align-items: center;
  
  gap: 80px;
  
  }
  
  
  
  .image-col {
  
  flex: 1;
  
  display: flex;
  
  justify-content: flex-end;
  
  }
  
  .text-col {
  
  flex: 1;
  
  text-align: left;
  
  }
  
  
  
  /* Cadre photo élégant */
  
  .portrait-frame {
  
  width: 100%;
  
  max-width: 450px;
  
  height: 600px;
  
  position: relative;
  
  }
  
  
  
  .portrait-frame img {
  
  width: 100%;
  
  height: 100%;
  
  object-fit: cover;
  
  box-shadow: 20px 20px 0 rgba(140, 123, 108, 0.2);
  
  }
  
  
  
  /* Typographie Histoire */
  
  .story-title {
  
  font-size: 2.5rem;
  
  color: #3e2723;
  
  margin-bottom: 10px;
  
  }
  
  
  
  .story-subtitle {
  
  color: #8d6e63;
  
  font-size: 0.9rem;
  
  letter-spacing: 2px;
  
  text-transform: uppercase;
  
  margin-bottom: 30px;
  
  font-weight: 600;
  
  }
  
  
  
  .story-content p {
  
  margin-bottom: 20px;
  
  color: #555;
  
  font-size: 1.05rem;
  
  line-height: 1.8;
  
  text-align: justify;
  
  }
  
  
  
  /* 3. Section Valeurs (3 colonnes) */
  
  .values-section {
  
  background-color: #fdfcf8;
  
  padding: 80px 5%;
  
  }
  
  
  
  .values-grid {
  
  display: grid;
  
  grid-template-columns: repeat(3, 1fr);
  
  gap: 40px;
  
  max-width: 1200px;
  
  margin: 0 auto;
  
  }
  
  
  
  .value-card {
  
  text-align: center;
  
  padding: 30px;
  
  border: 1px solid #eee;
  
  background: #fff;
  
  transition: transform 0.3s;
  
  }
  
  
  
  .value-card:hover {
  
  transform: translateY(-5px);
  
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  
  }
  
  
  
  .value-card i {
  
  font-size: 2rem;
  
  color: #8d6e63;
  
  margin-bottom: 20px;
  
  }
  
  
  
  .value-card h3 {
  
  font-family: "Playfair Display", serif;
  
  font-size: 1.3rem;
  
  margin-bottom: 15px;
  
  color: #3e2723;
  
  }
  
  
  
  .value-card p {
  
  font-size: 0.9rem;
  
  color: #777;
  
  }
  
  
  
  /* Lien actif dans le menu */
  
  .active-page {
  
  color: #8c7b6c !important; /* Marron */
  
  font-weight: bold;
  
  }
  
  
  
  /* --- RESPONSIVE HISTOIRE --- */
  
  @media screen and (max-width: 1024px) {
  
  .split-layout {
  
  flex-direction: column;
  
  gap: 40px;
  
  }
  
  
  
  .portrait-frame {
  
  height: 400px;
  
  max-width: 100%;
  
  }
  
  
  
  .image-col,
  
  .text-col {
  
  width: 100%;
  
  display: block;
  
  }
  
  
  
  .text-col {
  
  text-align: center;
  
  }
  
  .story-content p {
  
  text-align: left;
  
  }
  
  
  
  .values-grid {
  
  grid-template-columns: 1fr;
  
  }
  
  
  
  .page-header h1 {
  
  font-size: 2.2rem;
  
  }
  
  }
  
  
  
  /* --- VERSION MOBILE GLOBALE --- */
  
  @media screen and (max-width: 1024px) {
  
  /* 1. CONFIGURATION GLOBALE */
  
  nav {
  
  position: relative;
  
  background-color: #ffffff;
  
  padding: 10px 0 15px 0;
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center;
  
  height: auto;
  
  }
  
  
  
  /* BURGER & BOUTON */
  
  .hamburger {
  
  display: block;
  
  position: absolute;
  
  top: 30px;
  
  left: 20px;
  
  font-size: 24px;
  
  cursor: pointer;
  
  color: #3e2723;
  
  z-index: 100;
  
  }
  
  
  
  .nav-left-group .btn-rdv {
  
  position: absolute;
  
  top: 25px;
  
  right: 20px;
  
  font-size: 10px !important;
  
  font-weight: 800 !important;
  
  padding: 8px 12px !important;
  
  white-space: nowrap;
  
  display: inline-block !important;
  
  background: linear-gradient(to bottom, #6d4c41 0%, #4e342e 100%) !important;
  
  color: #ffffff !important;
  
  border-radius: 2px;
  
  border: none;
  
  box-shadow: 0 2px 5px rgba(93, 64, 55, 0.3);
  
  }
  
  
  
  /* LE LOGO XXL */
  
  .logo-center {
  
  position: relative;
  
  display: block !important;
  
  top: auto;
  
  left: auto;
  
  transform: none;
  
  background: transparent !important;
  
  box-shadow: none !important;
  
  border: none !important;
  
  width: 145px;
  
  height: 145px;
  
  margin: 40px auto 0 auto;
  
  z-index: 50;
  
  }
  
  
  
  .logo-center img {
  
  max-width: 100%;
  
  height: auto;
  
  }
  
  
  
  /* ICÔNES SOCIALES */
  
  .nav-left-group {
  
  order: 3;
  
  width: 100%;
  
  display: flex;
  
  justify-content: center;
  
  margin-top: 5px;
  
  padding-bottom: 5px;
  
  }
  
  
  
  .nav-left-group a i {
  
  font-size: 16px;
  
  margin: 0 8px;
  
  color: #6d4c41;
  
  }
  
  
  
  .nav-left-group span {
  
  display: none;
  
  }
  
  
  
  /* MENU DÉROULANT */
  
  .nav-links {
  
  display: none;
  
  flex-direction: column;
  
  width: 100%;
  
  background-color: #ffffff;
  
  padding: 15px 0;
  
  margin-top: 5px;
  
  border-top: 1px solid #f0f0f0;
  
  order: 4;
  
  }
  
  .nav-links.active {
  
  display: flex;
  
  }
  
  .nav-links li {
  
  margin: 10px 0;
  
  text-align: center;
  
  }
  
  
  
  .hero {
  
  height: 50vh;
  
  min-height: 380px;
  
  }
  
  .hero h1 {
  
  font-size: 1.6rem;
  
  padding: 0 15px;
  
  }
  
  
  
  /* SLIDER MOBILE */
  
  .portfolio-grid {
  
  display: flex !important;
  
  overflow-x: auto;
  
  scroll-snap-type: x mandatory;
  
  scroll-behavior: smooth;
  
  gap: 0;
  
  padding: 0;
  
  scrollbar-width: none;
  
  }
  
  .portfolio-grid::-webkit-scrollbar {
  
  display: none;
  
  }
  
  
  
  .portfolio-card {
  
  min-width: 100%;
  
  scroll-snap-align: center;
  
  border: none;
  
  margin: 0;
  
  }
  
  .image-box {
  
  height: 300px;
  
  }
  
  .carousel-dots {
  
  display: flex;
  
  }
  
  }
  
  
  
  /* SUR ORDI */
  
  @media screen and (min-width: 1025px) {
  
  .hamburger {
  
  display: none;
  
  }
  
  }
  
  
  
  /* --- SECTION PROJECT STARTER (CONTACT) --- */
  
  .project-starter-section {
  
  padding: 80px 20px;
  
  background-color: #f4f1ea; /* Fond beige un peu plus soutenu */
  
  text-align: center;
  
  }
  
  
  
  .starter-header h2 {
  
  font-size: 2.5rem;
  
  color: #3e2723;
  
  margin-bottom: 40px;
  
  }
  
  
  
  /* La Carte du Formulaire */
  
  .form-card {
  
  background: #ffffff;
  
  max-width: 600px;
  
  margin: 0 auto 30px;
  
  padding: 40px;
  
  border-radius: 8px;
  
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  
  position: relative;
  
  overflow: hidden;
  
  min-height: 400px; /* Hauteur fixe pour éviter que ça bouge */
  
  display: flex;
  
  flex-direction: column;
  
  justify-content: center;
  
  }
  
  
  
  /* Barre de progression */
  
  .progress-bar-container {
  
  position: absolute;
  
  top: 0;
  
  left: 0;
  
  width: 100%;
  
  height: 4px;
  
  background: #eee;
  
  }
  
  .progress-bar {
  
  height: 100%;
  
  width: 33%;
  
  background: #8c7b6c;
  
  transition: width 0.4s ease;
  
  }
  
  
  
  /* Les Étapes (Cachées par défaut) */
  
  .form-step {
  
  display: none;
  
  animation: fadeIn 0.5s ease;
  
  }
  
  .form-step.active {
  
  display: block;
  
  }
  
  
  
  @keyframes fadeIn {
  
  from {
  
  opacity: 0;
  
  transform: translateY(10px);
  
  }
  
  to {
  
  opacity: 1;
  
  transform: translateY(0);
  
  }
  
  }
  
  
  
  .form-step h3 {
  
  font-family: "Playfair Display", serif;
  
  font-size: 1.5rem;
  
  color: #3e2723;
  
  margin-bottom: 30px;
  
  }
  
  
  
  /* ÉTAPE 1 : Grille d'options */
  
  .options-grid {
  
  display: grid;
  
  grid-template-columns: 1fr 1fr;
  
  gap: 15px;
  
  }
  
  
  
  .option-card {
  
  border: 1px solid #eee;
  
  padding: 20px;
  
  border-radius: 4px;
  
  cursor: pointer;
  
  transition: all 0.3s;
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center;
  
  gap: 10px;
  
  }
  
  
  
  .option-card i {
  
  font-size: 1.5rem;
  
  color: #ccc;
  
  transition: 0.3s;
  
  }
  
  .option-card span {
  
  font-weight: 600;
  
  font-size: 0.9rem;
  
  color: #555;
  
  }
  
  
  
  .option-card:hover,
  
  .option-card.selected {
  
  border-color: #8c7b6c;
  
  background-color: #fdfcf8;
  
  }
  
  .option-card:hover i,
  
  .option-card.selected i {
  
  color: #8c7b6c;
  
  }
  
  
  
  /* ÉTAPE 2 : Slider */
  
  .range-container {
  
  margin: 40px 0;
  
  }
  
  #surface-value {
  
  font-family: "Playfair Display", serif;
  
  font-size: 3rem;
  
  color: #3e2723;
  
  display: block;
  
  margin-bottom: 20px;
  
  }
  
  
  
  .custom-range {
  
  -webkit-appearance: none;
  
  width: 100%;
  
  height: 6px;
  
  background: #eee;
  
  outline: none;
  
  border-radius: 3px;
  
  }
  
  .custom-range::-webkit-slider-thumb {
  
  -webkit-appearance: none;
  
  width: 24px;
  
  height: 24px;
  
  background: #3e2723;
  
  border-radius: 50%;
  
  cursor: pointer;
  
  border: 2px solid #fff;
  
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  
  }
  
  
  
  .range-labels {
  
  display: flex;
  
  justify-content: space-between;
  
  color: #aaa;
  
  font-size: 0.8rem;
  
  margin-top: 10px;
  
  }
  
  
  
  /* ÉTAPE 3 : Inputs */
  
  .input-group {
  
  display: flex;
  
  flex-direction: column;
  
  gap: 15px;
  
  }
  
  .input-group input {
  
  padding: 15px;
  
  border: 1px solid #ddd;
  
  border-radius: 4px;
  
  font-size: 1rem;
  
  }
  
  .input-group input:focus {
  
  border-color: #8c7b6c;
  
  outline: none;
  
  }
  
  
  
  /* Boutons Navigation */
  
  .nav-btns {
  
  display: flex;
  
  justify-content: space-between;
  
  margin-top: 30px;
  
  }
  
  .btn-prev {
  
  background: none;
  
  border: none;
  
  color: #aaa;
  
  cursor: pointer;
  
  text-decoration: underline;
  
  }
  
  .btn-next,
  
  .btn-submit {
  
  background-color: #3e2723;
  
  color: white;
  
  padding: 12px 30px;
  
  border: none;
  
  border-radius: 3px;
  
  cursor: pointer;
  
  font-weight: bold;
  
  transition: 0.3s;
  
  }
  
  .btn-submit:hover,
  
  .btn-next:hover {
  
  background-color: #8c7b6c;
  
  }
  
  
  
  /* Footer Link */
  
  .footer-simple-link p {
  
  color: #777;
  
  font-size: 0.9rem;
  
  }
  
  .footer-simple-link a {
  
  color: #8c7b6c;
  
  font-weight: bold;
  
  }
  
  
  
  /* Mobile */
  
  @media (max-width: 600px) {
  
  .form-card {
  
  padding: 20px;
  
  }
  
  .options-grid {
  
  grid-template-columns: 1fr;
  
  }
  
  }
  
  
  
  /* --- HORIZONTAL PROCESS SECTION --- */
  
  .horizontal-process-section {
  
  padding: 100px 20px;
  
  background: linear-gradient(
  
  to bottom,
  
  #fff,
  
  #fdfcf8
  
  ); /* Léger dégradé vers le crème */
  
  }
  
  
  
  .process-container {
  
  display: flex;
  
  justify-content: space-between;
  
  align-items: flex-start;
  
  max-width: 1200px;
  
  margin: 0 auto;
  
  position: relative;
  
  }
  
  
  
  /* La ligne de connexion horizontale */
  
  .process-container::before {
  
  content: "";
  
  position: absolute;
  
  top: 50px; /* Hauteur de la ligne */
  
  left: 50px;
  
  right: 50px;
  
  height: 2px;
  
  background-color: #eee;
  
  z-index: 0;
  
  }
  
  
  
  .process-step {
  
  position: relative;
  
  background: #fff;
  
  width: 23%; /* 4 étapes sur 100% */
  
  padding: 30px 25px;
  
  border-radius: 8px;
  
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transition très fluide */
  
  z-index: 1;
  
  cursor: default;
  
  }
  
  
  
  /* EFFET AU SURVOL (HOVER) */
  
  .process-step:hover {
  
  transform: translateY(-15px); /* La carte remonte */
  
  box-shadow: 0 20px 40px rgba(62, 39, 35, 0.1); /* L'ombre grandit et se teinte */
  
  background-color: #fdfcf8; /* Fond légèrement plus chaud */
  
  }
  
  
  
  .step-header {
  
  text-align: center;
  
  margin-bottom: 10px;
  
  }
  
  
  
  .step-number {
  
  display: block;
  
  font-family: "Pinyon Script", cursive;
  
  font-size: 3rem;
  
  color: #e0e0e0; /* Gris clair au repos */
  
  line-height: 1;
  
  margin-bottom: 15px;
  
  transition: color 0.4s ease;
  
  }
  
  
  
  .process-step:hover .step-number {
  
  color: #8c7b6c; /* Le numéro s'allume en marron doré au survol */
  
  }
  
  
  
  .step-header h3 {
  
  font-family: "Playfair Display", serif;
  
  font-size: 1.3rem;
  
  color: #3e2723;
  
  margin: 0;
  
  }
  
  
  
  /* Le contenu caché qui apparaît */
  
  .step-content {
  
  text-align: center;
  
  /* Astuce pour cacher le texte et l'animer */
  
  max-height: 0;
  
  opacity: 0;
  
  overflow: hidden;
  
  transition: all 0.5s ease-in-out;
  
  }
  
  
  
  .step-content p {
  
  font-size: 0.95rem;
  
  color: #666;
  
  line-height: 1.6;
  
  margin-top: 20px; /* Espace avant le texte */
  
  }
  
  
  
  /* Au survol, on dévoile le texte */
  
  .process-step:hover .step-content {
  
  max-height: 150px; /* Assez grand pour le texte */
  
  opacity: 1;
  
  }
  
  
  
  /* RESPONSIVE : DESIGN "BULLES ANIMÉES" SUR MOBILE */
  
  @media screen and (max-width: 900px) {
  
  /* 1. Le Conteneur de Swipe */
  
  .horizontal-process-section {
  
  padding: 60px 0;
  
  background: #fdfcf8; /* Fond très léger */
  
  overflow: hidden;
  
  }
  
  
  
  .process-container {
  
  display: flex;
  
  flex-direction: row;
  
  overflow-x: auto;
  
  gap: 20px;
  
  padding: 20px 30px 50px 30px; /* Espace pour l'ombre */
  
  scroll-snap-type: x mandatory; /* Le swipe s'arrête net sur une bulle */
  
  -webkit-overflow-scrolling: touch;
  
  }
  
  
  
  /* Cache la barre de scroll */
  
  .process-container::-webkit-scrollbar {
  
  display: none;
  
  }
  
  .process-container::before {
  
  display: none;
  
  }
  
  
  
  /* 2. La Carte "Galet" */
  
  .process-step {
  
  min-width: 80vw; /* Prend 80% de la largeur */
  
  flex: 0 0 auto;
  
  scroll-snap-align: center;
  
  background: #fff;
  
  border: none;
  
  border-radius: 30px; /* Bords très arrondis comme un galet */
  
  padding: 40px 25px;
  
  text-align: center;
  
  transform: none !important;
  
  box-shadow: 0 10px 25px rgba(140, 123, 108, 0.1); /* Ombre douce colorée */
  
  position: relative;
  
  margin: 0;
  
  }
  
  
  
  /* 3. Le Cercle Numéroté (La "Bulle") */
  
  .step-header {
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center;
  
  justify-content: center;
  
  margin-bottom: 20px;
  
  }
  
  
  
  .step-number {
  
  display: flex;
  
  align-items: center;
  
  justify-content: center;
  
  width: 80px; /* Taille du cercle */
  
  height: 80px;
  
  border-radius: 50%; /* C'est un rond parfait */
  
  background: #fff;
  
  border: 1px solid #e0e0e0;
  
  font-size: 2rem;
  
  color: #8c7b6c;
  
  margin-bottom: 15px;
  
  
  
  /* L'ANIMATION "RESPIRATION" */
  
  animation: pulseCircle 3s infinite ease-in-out;
  
  box-shadow: 0 0 0 0 rgba(140, 123, 108, 0.4);
  
  }
  
  
  
  /* Définition de l'animation */
  
  @keyframes pulseCircle {
  
  0% {
  
  transform: scale(1);
  
  box-shadow: 0 0 0 0 rgba(140, 123, 108, 0.2);
  
  }
  
  50% {
  
  transform: scale(1.05); /* Le cercle grandit un peu */
  
  box-shadow: 0 0 0 10px rgba(140, 123, 108, 0); /* L'onde se dissipe */
  
  border-color: #8c7b6c;
  
  }
  
  100% {
  
  transform: scale(1);
  
  box-shadow: 0 0 0 0 rgba(140, 123, 108, 0);
  
  }
  
  }
  
  
  
  .step-header h3 {
  
  font-size: 1.4rem;
  
  margin-top: 10px;
  
  }
  
  
  
  /* 4. Le Texte */
  
  .step-content {
  
  max-height: none;
  
  opacity: 1;
  
  margin-top: 0;
  
  }
  
  
  
  .step-content p {
  
  font-size: 1rem;
  
  color: #666;
  
  line-height: 1.5;
  
  }
  
  }
  
  
  
  /* FORCE LA POLICE DROITE (LATO) POUR LES SOUS-TITRES ET PARAGRAPHES */
  
  .subtitle,
  
  .section-subtitle,
  
  .hero p {
  
  font-family: "Lato", sans-serif !important; /* Police bâton propre */
  
  font-style: normal;
  
  text-transform: uppercase; /* En majuscules */
  
  letter-spacing: 2px; /* Espacement des lettres pour le côté luxe */
  
  font-weight: 400;
  
  }
  
  
  
  /* --- STYLE DU TOGGLE (CASE A COCHER MODERNE) --- */
  
  .toggle-container {
  
  background: #fff;
  
  padding: 20px;
  
  border-radius: 8px;
  
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  
  text-align: center;
  
  margin-bottom: 30px;
  
  border: 1px solid #eee;
  
  }
  
  
  
  .toggle-label {
  
  display: inline-flex;
  
  align-items: center;
  
  cursor: pointer;
  
  gap: 15px;
  
  }
  
  
  
  .toggle-label input {
  
  display: none; /* On cache la vraie checkbox moche */
  
  }
  
  
  
  /* Le design du bouton switch */
  
  .toggle-custom {
  
  width: 50px;
  
  height: 28px;
  
  background-color: #ddd;
  
  border-radius: 50px;
  
  position: relative;
  
  transition: background-color 0.3s ease;
  
  }
  
  
  
  .toggle-circle {
  
  width: 24px;
  
  height: 24px;
  
  background-color: white;
  
  border-radius: 50%;
  
  position: absolute;
  
  top: 2px;
  
  left: 2px;
  
  transition: transform 0.3s ease;
  
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  
  }
  
  
  
  /* Quand c'est coché */
  
  .toggle-label input:checked + .toggle-custom {
  
  background-color: #8c7b6c; /* Couleur Marron Agence */
  
  }
  
  
  
  .toggle-label input:checked + .toggle-custom .toggle-circle {
  
  transform: translateX(22px);
  
  }
  
  
  
  .toggle-text {
  
  font-family: "Lato", sans-serif;
  
  font-weight: 700;
  
  color: #3e2723;
  
  text-transform: uppercase;
  
  font-size: 0.9rem;
  
  }
  
  
  
  .toggle-info {
  
  margin-top: 10px;
  
  font-size: 0.85rem;
  
  color: #888;
  
  font-style: italic;
  
  }
  
  
  
  /* --- AJOUTS POUR LA PAGE RDV (SWITCH & FORMULAIRE PROJET) --- */
  
  
  
  /* LE SWITCH (ON/OFF) */
  
  .toggle-wrapper {
  
  display: flex;
  
  align-items: center;
  
  justify-content: center;
  
  gap: 15px;
  
  margin-bottom: 20px;
  
  background: #fdfcf8;
  
  padding: 15px;
  
  border-radius: 8px;
  
  border: 1px solid #eee;
  
  }
  
  
  
  .switch {
  
  position: relative;
  
  display: inline-block;
  
  width: 60px;
  
  height: 34px;
  
  }
  
  
  
  .switch input {
  
  opacity: 0;
  
  width: 0;
  
  height: 0;
  
  }
  
  
  
  .slider {
  
  position: absolute;
  
  cursor: pointer;
  
  top: 0;
  
  left: 0;
  
  right: 0;
  
  bottom: 0;
  
  background-color: #ccc;
  
  transition: 0.4s;
  
  }
  
  
  
  .slider:before {
  
  position: absolute;
  
  content: "";
  
  height: 26px;
  
  width: 26px;
  
  left: 4px;
  
  bottom: 4px;
  
  background-color: white;
  
  transition: 0.4s;
  
  }
  
  
  
  input:checked + .slider {
  
  background-color: #8c7b6c; /* Couleur Marron */
  
  }
  
  
  
  input:checked + .slider:before {
  
  transform: translateX(26px);
  
  }
  
  
  
  .slider.round {
  
  border-radius: 34px;
  
  }
  
  .slider.round:before {
  
  border-radius: 50%;
  
  }
  
  
  
  .toggle-label-text {
  
  font-family: "Lato", sans-serif;
  
  font-weight: 700;
  
  font-size: 0.85rem;
  
  color: #888;
  
  text-transform: uppercase;
  
  transition: color 0.3s;
  
  }
  
  
  
  /* Changement de couleur du texte quand actif */
  
  .toggle-wrapper:has(input:checked) .toggle-label-text:last-child {
  
  color: #3e2723;
  
  }
  
  .toggle-wrapper:has(input:not(:checked)) .toggle-label-text:first-child {
  
  color: #3e2723;
  
  }
  
  
  
  /* 2. STYLE DU QUESTIONNAIRE (Grille & Cartes) */
  
  .form-step {
  
  display: none;
  
  animation: fadeIn 0.5s ease;
  
  }
  
  .form-step.active {
  
  display: block;
  
  }
  
  
  
  .form-step h3 {
  
  font-family: "Playfair Display", serif;
  
  color: #3e2723;
  
  margin-bottom: 20px;
  
  text-align: center;
  
  }
  
  
  
  .options-grid {
  
  display: grid;
  
  grid-template-columns: 1fr 1fr;
  
  gap: 15px;
  
  margin-bottom: 20px;
  
  }
  
  
  
  .option-card {
  
  border: 1px solid #ddd;
  
  padding: 20px;
  
  text-align: center;
  
  border-radius: 5px;
  
  cursor: pointer;
  
  background: #fff;
  
  transition: 0.3s;
  
  }
  
  .option-card:hover,
  
  .option-card.selected {
  
  border-color: #8c7b6c;
  
  background-color: #f8f5f2;
  
  }
  
  .option-card i {
  
  font-size: 1.5rem;
  
  color: #ccc;
  
  display: block;
  
  margin-bottom: 10px;
  
  }
  
  .option-card.selected i {
  
  color: #8c7b6c;
  
  }
  
  
  
  /* Progress Bar */
  
  .progress-bar-container {
  
  width: 100%;
  
  height: 4px;
  
  background: #eee;
  
  margin-bottom: 30px;
  
  border-radius: 2px;
  
  }
  
  .progress-bar {
  
  height: 100%;
  
  background: #8c7b6c;
  
  width: 0%;
  
  transition: width 0.3s;
  
  }
  
  
  
  /* Slider Surface */
  
  .range-container {
  
  text-align: center;
  
  margin: 40px 0;
  
  }
  
  #surface-value {
  
  font-family: "Playfair Display", serif;
  
  font-size: 2.5rem;
  
  color: #3e2723;
  
  display: block;
  
  margin-bottom: 10px;
  
  }
  
  .custom-range {
  
  width: 100%;
  
  accent-color: #8c7b6c;
  
  }
  
  
  
  /* Boutons Navigation interne */
  
  .nav-btns {
  
  display: flex;
  
  justify-content: space-between;
  
  margin-top: 20px;
  
  align-items: center;
  
  }
  
  .btn-prev {
  
  background: none;
  
  border: none;
  
  text-decoration: underline;
  
  color: #888;
  
  cursor: pointer;
  
  font-size: 0.9rem;
  
  }
  
  
  
  /* ====================================================================== */
  
  /* === STYLE CONTACT FINAL (SCROLL ACTIVÉ) + LOGO GROS + REMONTÉ === */
  
  /* ====================================================================== */
  
  
  
  /* --- LAYOUT SPLIT SCREEN --- */
  
  .split-screen {
  
  display: flex;
  
  min-height: 100vh; /* Permet d'agrandir si le contenu est long */
  
  width: 100%;
  
  }
  
  
  
  /* --- PANNEAU GAUCHE --- */
  
  .left-panel {
  
  flex: 1; /* Prend 50% */
  
  background-color: var(--contact-bg); /* Couleur Beige Sable spécifique */
  
  /* PADDING AJUSTÉ : Plus d'espace en haut pour descendre sous le bouton retour */
  
  padding: 120px 40px 60px;
  
  display: flex;
  
  flex-direction: column;
  
  /* ALIGNEMENT FLEX-START = REMONTE TOUT EN HAUT */
  
  justify-content: flex-start;
  
  align-items: center; /* CENTRE LE CONTENU horizontalement */
  
  text-align: center; /* CENTRE LE TEXTE */
  
  position: relative;
  
  }
  
  
  
  /* Bouton Retour (Haut Gauche) */
  
  .back-nav {
  
  position: absolute;
  
  top: 40px;
  
  left: 50px;
  
  font-size: 0.7rem;
  
  letter-spacing: 2px;
  
  color: #999;
  
  text-transform: uppercase;
  
  }
  
  .back-nav:hover {
  
  color: var(--contact-btn);
  
  }
  
  
  
  /* Conteneur de contenu (Aligné à gauche) */
  
  .content-box {
  
  max-width: 600px;
  
  width: 100%;
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center; /* Assure que tout est bien centré */
  
  justify-content: center;
  
  }
  
  
  
  /* Logo */
  
  .logo-wrapper {
  
  margin-bottom: 30px;
  
  }
  
  .logo-img {
  
  width: 260px; /* LOGO AGRANDI À 260PX */
  
  height: auto;
  
  display: block;
  
  mix-blend-mode: multiply; /* Enlève le fond blanc du logo */
  
  }
  
  
  
  /* Titres */
  
  .subtitle {
  
  display: none; /* MASQUÉ COMME DEMANDÉ */
  
  }
  
  
  
  .main-title {
  
  font-family: var(--font-serif);
  
  font-size: 3rem;
  
  color: var(--contact-text);
  
  line-height: 1.2;
  
  margin-bottom: 20px;
  
  white-space: nowrap; /* FORCE UNE SEULE LIGNE */
  
  text-align: center;
  
  }
  
  
  
  .line-deco {
  
  width: 60px;
  
  height: 2px;
  
  background-color: var(--text-gold);
  
  margin-bottom: 40px;
  
  opacity: 0.6;
  
  }
  
  
  
  /* Liste Contact (Alignement Icône/Texte) */
  
  .contact-list {
  
  display: flex;
  
  flex-direction: column;
  
  gap: 30px;
  
  margin-bottom: 40px;
  
  width: 100%;
  
  align-items: center;
  
  }
  
  
  
  .contact-row {
  
  display: flex;
  
  flex-direction: column; /* Icône au-dessus du texte */
  
  align-items: center;
  
  gap: 5px;
  
  }
  
  
  
  .icon-circle {
  
  width: 50px;
  
  height: 50px;
  
  background-color: #fff;
  
  border-radius: 50%;
  
  display: flex;
  
  align-items: center;
  
  justify-content: center;
  
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  
  margin-bottom: 5px;
  
  }
  
  
  
  .icon-circle i {
  
  font-size: 1.5rem;
  
  color: #888;
  
  }
  
  
  
  .text-col {
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center;
  
  }
  
  
  
  .label {
  
  font-family: var(--font-sans);
  
  font-size: 0.7rem;
  
  letter-spacing: 3px;
  
  text-transform: uppercase;
  
  color: #aaa;
  
  margin-bottom: 2px;
  
  font-weight: 700;
  
  }
  
  
  
  .value-serif {
  
  font-family: var(--font-serif);
  
  font-size: 1.8rem; /* Gros chiffre */
  
  color: var(--contact-text);
  
  }
  
  
  
  .value-link {
  
  font-family: var(--font-serif);
  
  font-size: 1.4rem;
  
  color: var(--contact-text);
  
  border-bottom: 1px solid transparent;
  
  width: fit-content;
  
  transition: 0.3s;
  
  }
  
  .value-link:hover {
  
  border-color: var(--text-gold);
  
  color: var(--text-gold);
  
  }
  
  
  
  .address {
  
  font-size: 1.4rem;
  
  line-height: 1.4;
  
  color: var(--contact-text);
  
  }
  
  .small-italic {
  
  font-family: var(--font-sans);
  
  font-size: 0.9rem;
  
  color: #888;
  
  font-style: italic;
  
  }
  
  
  
  /* Bouton Marron Foncé (Carré) */
  
  .btn-wrapper {
  
  margin-bottom: 30px;
  
  }
  
  .btn-dark-brown {
  
  display: inline-block;
  
  background-color: var(--contact-btn);
  
  color: #fff;
  
  padding: 18px 50px;
  
  font-size: 0.85rem;
  
  letter-spacing: 2px;
  
  text-transform: uppercase;
  
  transition: all 0.3s ease;
  
  border: 1px solid var(--contact-btn);
  
  font-weight: 700;
  
  }
  
  .btn-dark-brown:hover {
  
  background-color: transparent;
  
  color: var(--contact-btn);
  
  }
  
  
  
  /* Social Icons */
  
  .social-bottom {
  
  margin-top: 30px;
  
  display: flex;
  
  gap: 25px;
  
  justify-content: center;
  
  }
  
  .social-bottom a {
  
  color: #ccc;
  
  font-size: 1.4rem;
  
  transition: 0.3s;
  
  }
  
  .social-bottom a:hover {
  
  color: var(--contact-text);
  
  }
  
  
  
  /* --- PANNEAU DROITE (IMAGE) --- */
  
  .right-panel {
  
  flex: 1; /* Prend l'autre 50% */
  
  min-height: 100vh; /* S'adapte à la hauteur totale */
  
  position: relative;
  
  }
  
  
  
  .right-panel img {
  
  width: 100%;
  
  height: 100%;
  
  object-fit: cover;
  
  position: absolute; /* Fixe l'image dans son conteneur */
  
  top: 0;
  
  left: 0;
  
  }
  
  
  
  /* RESPONSIVE */
  
  @media (max-width: 1024px) {
  
  .main-title {
  
  font-size: 2.5rem;
  
  white-space: normal; /* Autorise le retour à la ligne sur petit écran */
  
  }
  
  }
  
  
  
  @media (max-width: 900px) {
  
  .split-screen {
  
  flex-direction: column;
  
  height: auto;
  
  }
  
  .right-panel {
  
  height: 300px;
  
  min-height: 300px;
  
  order: -1; /* Met l'image en haut sur mobile */
  
  position: relative;
  
  }
  
  .right-panel img {
  
  position: relative; /* Image normale sur mobile */
  
  }
  
  .left-panel {
  
  padding: 50px 20px;
  
  height: auto;
  
  }
  
  .back-nav {
  
  top: 20px;
  
  left: 20px;
  
  }
  
  .logo-img {
  
  width: 180px; /* Logo plus petit sur mobile */
  
  }
  
  }