/* ============================================
   Valoris Foncier — Main Stylesheet
   ============================================ */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FAFAFA;
  --off-white: #F2F2F0;
  --light-gray: #E8E8E6;
  --mid-gray: #737371;
  --dark: #1A1A1A;
  --navy: #0A1628;
  --navy-light: #132240;
  --accent: #2A4A7F;
  --gold: #B8965A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -1px;
}

.logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  appearance: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 28px;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1F3C 40%, #162D50 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 74, 127, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: glow 8s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 40px) scale(1.15); }
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

/* Layout hero : portrait à gauche, texte à droite */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 620px;
  flex: 1;
}

/* ---- Portrait avec effets visuels intégrés ---- */
.hero-portrait {
  flex-shrink: 0;
  width: 360px;
  height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cercle lumineux doré derrière la photo */
.portrait-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: portraitPulse 4s ease-in-out infinite alternate;
}

/* Anneau extérieur — grand cercle doré fin qui tourne lentement */
.portrait-ring--outer {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringRotate 20s linear infinite;
}

/* Tiret doré sur l'anneau extérieur pour accentuer la rotation */
.portrait-ring--outer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  width: 40px;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Anneau intérieur — cercle pointillé plus serré */
.portrait-ring--inner {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px dashed rgba(184, 150, 90, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringRotate 15s linear infinite reverse;
}

/* Lignes décoratives verticales (haut et bas) */
.portrait-line--top,
.portrait-line--bottom {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
  transform: translateX(-50%);
}

.portrait-line--top {
  top: -10px;
}

.portrait-line--bottom {
  bottom: -10px;
}

/* Cadre photo avec bordure dorée subtile */
.portrait-frame {
  position: relative;
  width: 280px;
  height: 360px;
  overflow: hidden;
  border-radius: 200px 200px 20px 20px;
  border: 2px solid rgba(184, 150, 90, 0.3);
  box-shadow:
    0 0 40px rgba(184, 150, 90, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Grille de petits points dorés décoratifs */
.portrait-dots {
  position: absolute;
  bottom: 20px;
  right: -20px;
  width: 60px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(184, 150, 90, 0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: 1;
}

/* Animations portrait */
@keyframes portraitPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 150, 90, 0.12);
  border: 1px solid rgba(184, 150, 90, 0.25);
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero h1 strong {
  font-weight: 600;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.3s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
  border-radius: 2px;
  font-family: var(--sans);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #c9a76b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 150, 90, 0.3);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: border-color 0.35s, background 0.35s;
  border-radius: 2px;
  font-family: var(--sans);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   Stats Strip
   ============================================ */
.stats-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 40px 20px;
  border-right: 1px solid var(--light-gray);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.stat-number span {
  color: var(--gold);
  font-size: 0.6em;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================
   Shared Section Styles
   ============================================ */
.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title strong {
  font-weight: 600;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.section-header p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 300;
}

/* ============================================
   About
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  padding: 24px;
  background: var(--off-white);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

.about-feature h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.5;
  margin: 0;
}

.about-image {
  position: relative;
  min-height: 400px;
  background: linear-gradient(160deg, var(--navy) 0%, #0e2240 50%, var(--navy-light) 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid rgba(184, 150, 90, 0.12);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  z-index: 1;
}

.about-image-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.about-image-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23B8965A' stroke-width='.5'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z'/%3E%3Cpath d='M40 10L70 40L40 70L10 40Z'/%3E%3Cpath d='M40 20L60 40L40 60L20 40Z'/%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

.about-image-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background:
    linear-gradient(45deg, transparent 40%, rgba(184, 150, 90, 0.08) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(184, 150, 90, 0.08) 50%, transparent 60%);
  background-size: 60px 60px;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(10, 22, 40, 0.9) 0%, transparent 20%),
    linear-gradient(to right, rgba(10, 22, 40, 0.4) 0%, transparent 15%),
    linear-gradient(to left, rgba(10, 22, 40, 0.4) 0%, transparent 15%);
  z-index: 3;
}

.team-photo {
  position: relative;
  z-index: 4;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  margin-top: 40px;
}

.about-image-label {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Friche industrielle
   ============================================ */
.friche {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.friche::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1F3C 50%, #162D50 100%);
}

.friche .container {
  position: relative;
  z-index: 2;
}

.friche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.friche-text .section-title {
  color: var(--white);
}

.friche-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.friche-text p strong {
  color: var(--gold);
  font-weight: 600;
}

.friche-btn {
  margin-top: 12px;
}

/* Lecteur PDF page par page */
.friche-viewer {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(184, 150, 90, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: #2a2a2a;
  display: flex;
  flex-direction: column;
}

/* Barre d'outils du lecteur */
.pdf-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--navy);
  border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}

.pdf-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.pdf-nav-btn:hover {
  background: rgba(184, 150, 90, 0.15);
  border-color: var(--gold);
}

.pdf-page-info {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  min-width: 100px;
  text-align: center;
}

/* Zone d'affichage du canvas */
.pdf-canvas-wrap {
  flex: 1;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  background: #3a3a3a;
  min-height: 500px;
}

.pdf-canvas-wrap canvas {
  display: block;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================
   Notre Approche
   ============================================ */
.approche {
  padding: 120px 0;
  background: var(--off-white);
}

.approche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.approche-text p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 16px;
}

.approche-items {
  display: grid;
  gap: 24px;
}

.approche-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--light-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approche-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.approche-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approche-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.approche-item h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.approche-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid-gray);
  font-weight: 300;
}

/* ============================================
   Process
   ============================================ */
.process {
  padding: 120px 0;
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  text-align: center;
  padding: 48px 36px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: transform 0.4s, box-shadow 0.4s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.step-number {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}

.step:hover .step-number {
  color: var(--gold);
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid-gray);
  font-weight: 300;
}

.step-time {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background: rgba(184, 150, 90, 0.08);
  border: 1px solid rgba(184, 150, 90, 0.2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: 2px;
}

/* ============================================
   Types / Acquisitions
   ============================================ */
.types {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.types::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, 0.5) 59px, rgba(255, 255, 255, 0.5) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, 0.5) 59px, rgba(255, 255, 255, 0.5) 60px);
}

.types .section-tag {
  color: var(--gold);
}

.types .section-title {
  color: var(--white);
}

.types .section-header {
  position: relative;
  z-index: 2;
}

.types .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.type-card {
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  text-align: center;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}

.type-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(184, 150, 90, 0.3);
  transform: translateY(-4px);
}

.type-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 1px solid rgba(184, 150, 90, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, border-color 0.4s;
}

.type-card:hover .type-card-icon {
  background: rgba(184, 150, 90, 0.1);
  border-color: var(--gold);
}

.type-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.type-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.type-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.types-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* ============================================
   Guarantees
   ============================================ */
.guarantees {
  padding: 120px 0;
  background: var(--white);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.guarantee {
  padding: 40px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  transition: box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.guarantee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.guarantee:hover::before {
  transform: scaleX(1);
}

.guarantee:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.guarantee-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.guarantee h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.guarantee p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid-gray);
  font-weight: 300;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--light-gray);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  stroke: none;
}

.testimonial blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-detail {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 2px;
}

/* ============================================
   Réalisations / Biens achetés
   ============================================ */
.realisations {
  padding: 120px 0;
  background: var(--white);
}

.biens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* --- Carte bien --- */
.bien-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bien-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Galerie photos en haut de la carte */
.bien-photos {
  position: relative;
  height: 260px;
  background: var(--off-white);
  overflow: hidden;
  cursor: pointer;
}

.bien-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bien-card:hover .bien-photos img {
  transform: scale(1.04);
}

/* Placeholder quand pas de photo */
.bien-photos-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--mid-gray);
  background: linear-gradient(135deg, var(--off-white) 0%, #e4e4e2 100%);
}

.bien-photos-empty svg {
  width: 40px;
  height: 40px;
  stroke: var(--mid-gray);
  opacity: 0.4;
}

.bien-photos-empty span {
  font-size: 12px;
  opacity: 0.5;
}

/* Compteur de photos en overlay */
.bien-photos-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(10, 22, 40, 0.75);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

/* Navigation photos dans la carte */
.bien-photos-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 22, 40, 0.5);
  color: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bien-photos:hover .bien-photos-nav {
  opacity: 1;
}

.bien-photos-nav--prev { left: 8px; }
.bien-photos-nav--next { right: 8px; }

/* Badge statut (Vendu, En cours, etc.) */
.bien-statut {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  font-family: var(--sans);
}

.bien-statut--vendu {
  background: var(--gold);
  color: var(--navy);
}

.bien-statut--en-cours {
  background: var(--navy);
  color: var(--white);
}

/* Contenu texte de la carte */
.bien-body {
  padding: 28px;
}

.bien-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.bien-titre {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Infos clés en ligne */
.bien-infos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 16px;
}

.bien-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--mid-gray);
}

.bien-info svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.bien-info strong {
  color: var(--navy);
  font-weight: 600;
}

/* Description */
.bien-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid-gray);
  font-weight: 300;
  margin-bottom: 16px;
}

/* Localisation */
.bien-localisation {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.bien-localisation svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

/* Message si aucun bien */
.biens-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--mid-gray);
  font-size: 16px;
}

/* --- Modal galerie photos --- */
.modal-gallery {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-gallery.active {
  opacity: 1;
  pointer-events: all;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.modal-close:hover { opacity: 1; }

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 40px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-prev { left: 20px; }
.modal-next { right: 20px; }

.modal-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
}

.modal-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.modal-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.12) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
}

.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content .section-tag {
  color: var(--gold);
}

.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-content h2 strong {
  font-weight: 600;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
  font-family: var(--sans);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cta-form input:focus {
  border-color: var(--gold);
}

.cta-form button {
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  border-radius: 2px;
  transition: background 0.3s;
  white-space: nowrap;
}

.cta-form button:hover,
.cta-form button:focus-visible {
  background: #c9a76b;
}

.cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info h2 strong {
  font-weight: 600;
}

.contact-info > p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-detail p {
  font-size: 14px;
  color: var(--mid-gray);
  margin-top: 4px;
  font-weight: 300;
}

.contact-detail a {
  color: inherit;
  text-decoration: none;
}

/* Signaux de réassurance dans la section contact */
.contact-reassurance {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.reassurance-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.contact-detail a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form {
  background: var(--off-white);
  padding: 48px;
  border-radius: 4px;
}

.contact-form h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 13px;
  color: var(--mid-gray);
  margin-bottom: 32px;
  font-weight: 300;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  font-size: 14px;
  font-family: var(--sans);
  color: var(--dark);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Conteneur des deux boutons d'envoi (WhatsApp + Email) */
.form-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.form-submit {
  flex: 1;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s;
}

/* Bouton Email — style secondaire avec bordure */
.form-submit--email {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-1px);
}

.form-submit--email:hover,
.form-submit--email:focus-visible {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--navy);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo-text {
  font-size: 18px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  max-width: 300px;
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  animation: waPopIn 0.6s 0.5s ease both;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.whatsapp-btn .wa-tooltip {
  position: absolute;
  right: 76px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn .wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

.whatsapp-btn:hover .wa-tooltip {
  opacity: 1;
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
}

@keyframes waPopIn {
  from { opacity: 0; transform: scale(0) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */

/* État initial : invisible et décalé vers le bas */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* État visible : apparaît et remonte */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais décalés pour les éléments en grille (effet cascade) */
.stats-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.process-steps .reveal:nth-child(2) { transition-delay: 0.15s; }
.process-steps .reveal:nth-child(3) { transition-delay: 0.3s; }

.types-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.types-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.types-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.guarantees-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.guarantees-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.guarantees-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.guarantees-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.guarantees-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.3s; }

/* Désactive les animations pour les utilisateurs qui préfèrent un mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   Micro-interactions améliorées
   ============================================ */

/* Témoignages : élévation au survol */
.testimonial {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(184, 150, 90, 0.3);
}

/* Icônes garanties : scale au hover de la carte */
.guarantee-icon {
  transition: transform 0.4s ease, background 0.4s ease;
}

.guarantee:hover .guarantee-icon {
  transform: scale(1.1);
  background: rgba(184, 150, 90, 0.1);
}

/* Icônes étapes : rotation subtile au hover */
.step-icon {
  transition: transform 0.4s ease, background 0.4s ease;
}

.step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold);
}

.step:hover .step-icon svg {
  stroke: var(--navy);
  transition: stroke 0.4s ease;
}

/* Type-cards : glow au hover */
.type-card:hover {
  box-shadow: 0 16px 40px rgba(184, 150, 90, 0.1);
}

/* About features : élévation au hover */
.about-feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* CTA bouton : scale au hover */
.cta-form button {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.3);
}

/* Contact details : slide au hover */
.contact-detail {
  transition: transform 0.3s ease;
}

.contact-detail:hover {
  transform: translateX(6px);
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    min-height: 300px;
  }

  .friche-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pdf-canvas-wrap {
    min-height: 360px;
    padding: 12px;
  }

  .approche-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Hero tablette : padding resserré, portrait réduit */
  .hero .container {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .hero-inner {
    gap: 40px;
  }

  .hero-portrait {
    width: 260px;
    height: 340px;
  }

  .portrait-frame {
    width: 210px;
    height: 270px;
  }

  .portrait-ring--outer {
    width: 280px;
    height: 280px;
  }

  .portrait-ring--inner {
    width: 245px;
    height: 245px;
  }

  .portrait-glow {
    width: 230px;
    height: 230px;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid var(--light-gray);
  }

  .process-steps,
  .types-grid,
  .guarantees-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* Hero mobile : portrait compact en haut, texte en dessous */
  .hero .container {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-badge {
    justify-content: center;
  }

  /* Portrait réduit et compact sur mobile */
  .hero-portrait {
    width: 180px;
    height: 240px;
    margin: 0 auto;
  }

  .portrait-frame {
    width: 150px;
    height: 200px;
    border-radius: 120px 120px 16px 16px;
  }

  .portrait-ring--outer {
    width: 200px;
    height: 200px;
  }

  .portrait-ring--inner {
    width: 175px;
    height: 175px;
  }

  .portrait-glow {
    width: 160px;
    height: 160px;
  }

  .portrait-line--top,
  .portrait-line--bottom {
    height: 20px;
    opacity: 0.2;
  }

  .portrait-dots {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .cta-form {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Boutons d'envoi empilés sur mobile */
  .form-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .whatsapp-btn {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-btn .wa-tooltip {
    display: none;
  }
}
