
  :root {
    --teal: #2a9d8f;
    --teal-light: #52c7bb;
    --blue-deep: #264d6d;
    --blue-mid: #3a7ca5;
    --mint: #a8e6df;
    --cream: #f7f5f0;
    --warm-white: #fdfcfa;
    --text-dark: #1a2533;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: rgba(42,157,143,0.15);
    --gradient: linear-gradient(135deg, #2a9d8f 0%, #3a7ca5 50%, #264d6d 100%);
  }


/* Burger hidden on desktop */
.nav-burger { display: none; }
.nav-mobile-menu { display: none; }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,252,250,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 32px rgba(38,77,109,0.08); }

  .nav-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .nav-logo img { height: 44px; width: auto; }
  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; letter-spacing: 0.05em;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a {
    text-decoration: none; font-size: 0.85rem; font-weight: 400;
    color: var(--text-mid); letter-spacing: 0.03em;
    transition: color 0.2s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
    height: 1px; background: var(--teal); transform: scaleX(0); transition: transform 0.3s;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--gradient); color: white !important;
    padding: 10px 22px; border-radius: 50px;
    font-weight: 500 !important; font-size: 0.82rem !important;
    transition: opacity 0.2s, transform 0.2s !important;
    box-shadow: 0 4px 16px rgba(42,157,143,0.3);
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); color: white !important; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative; overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(160deg, #f0faf9 0%, #e8f4fd 40%, #f7f5f0 100%);
  }
  .hero-bg::before {
    content: ''; position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,157,143,0.08) 0%, transparent 70%);
    top: -100px; right: -100px;
  }
  .hero-bg::after {
    content: ''; position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58,124,165,0.06) 0%, transparent 70%);
    bottom: 0; left: 10%;
  }

  .hero-content { position: relative; z-index: 1; padding-right: 48px; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 24px;
  }
  .hero-eyebrow span {
    display: inline-block; width: 32px; height: 1px; background: var(--teal);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 300; line-height: 1.15;
    color: var(--blue-deep); margin-bottom: 8px;
  }
  .hero-title em {
    font-style: italic; font-weight: 300;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .hero-baseline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; font-style: italic;
    color: var(--blue-mid); margin-bottom: 28px; letter-spacing: 0.02em;
  }

  .hero-desc {
    font-size: 0.95rem; line-height: 1.8; color: var(--text-mid);
    max-width: 440px; margin-bottom: 40px; font-weight: 300;
  }

  .hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient); color: white;
    padding: 14px 32px; border-radius: 50px; text-decoration: none;
    font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em;
    box-shadow: 0 8px 24px rgba(42,157,143,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(42,157,143,0.45); }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--blue-deep); text-decoration: none;
    font-size: 0.88rem; font-weight: 400; letter-spacing: 0.02em;
    padding: 14px 24px; border-radius: 50px;
    border: 1px solid rgba(38,77,109,0.2);
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-secondary:hover { border-color: var(--teal); background: rgba(42,157,143,0.05); }

  .hero-visual {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
  }

  .hero-photo-wrap {
    position: relative;
    width: 400px; height: 500px;
  }
  .hero-photo-bg {
    position: absolute; inset: 0;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    background: linear-gradient(135deg, rgba(42,157,143,0.18), rgba(58,124,165,0.12));
    animation: morphBlob 8s ease-in-out infinite;
  }
  @keyframes morphBlob {
    0%, 100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
    33% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
    66% { border-radius: 50% 50% 60% 40% / 50% 40% 60% 50%; }
  }
  .hero-photo-img {
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    height: 490px; width: auto;
    object-fit: cover; object-position: top;
    border-radius: 180px 180px 32px 32px;
    box-shadow: 0 24px 64px rgba(38,77,109,0.22);
    z-index: 1;
    animation: floatPhoto 6s ease-in-out infinite;
  }
  @keyframes floatPhoto {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
  }
  .hero-photo-badge {
    position: absolute; bottom: 28px; right: -16px; z-index: 2;
    background: white; border-radius: 16px; padding: 10px 16px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 32px rgba(38,77,109,0.15);
    border: 1px solid var(--border);
  }
  .hero-photo-badge img { width: 34px; height: 34px; object-fit: contain; }
  .hero-photo-badge span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600; color: var(--blue-deep);
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .hero-stats {
    position: absolute; bottom: 40px; left: 5%; right: 5%;
    display: flex; gap: 2px; z-index: 1;
  }
  .stat-item {
    flex: 1; background: white;
    border: 1px solid var(--border);
    padding: 18px 24px; border-radius: 16px;
    box-shadow: 0 4px 24px rgba(38,77,109,0.06);
    text-align: center;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--teal);
    display: block;
  }
  .stat-label { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; letter-spacing: 0.03em; }

  /* ─── SECTIONS ─── */
  section { padding: 96px 5%; }

  .section-header { text-align: center; margin-bottom: 64px; }
  .section-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 16px;
    background: rgba(42,157,143,0.08); padding: 6px 16px; border-radius: 50px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300;
    color: var(--blue-deep); line-height: 1.2;
  }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-subtitle {
    margin-top: 16px; font-size: 0.95rem; color: var(--text-light);
    max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; font-weight: 300;
  }
  .divider {
    width: 48px; height: 2px;
    background: var(--gradient); border-radius: 2px;
    margin: 20px auto 0;
  }

  /* ─── ABOUT ─── */
  #about { background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

  .about-quote-wrap {
    position: relative;
    background: white; border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 48px rgba(38,77,109,0.08);
    border: 1px solid var(--border);
  }
  .about-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem; line-height: 0.5;
    color: var(--teal); opacity: 0.2;
    position: absolute; top: 24px; left: 32px;
  }
  .about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; line-height: 1.8; font-style: italic; font-weight: 300;
    color: var(--blue-deep); position: relative; z-index: 1;
  }
  .about-signature {
    margin-top: 24px; display: flex; align-items: center; gap: 12px;
  }
  .about-sig-line { width: 32px; height: 1px; background: var(--teal); }
  .about-sig-text { font-size: 0.82rem; font-weight: 500; color: var(--teal); letter-spacing: 0.05em; }

  .about-content {}
  .about-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300; color: var(--blue-deep);
    margin-bottom: 20px; line-height: 1.3;
  }
  .about-content p {
    font-size: 0.92rem; line-height: 1.85; color: var(--text-mid);
    margin-bottom: 16px; font-weight: 300;
  }
  .about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
  .tag {
    font-size: 0.78rem; padding: 6px 14px; border-radius: 50px;
    border: 1px solid rgba(42,157,143,0.3); color: var(--teal);
    background: rgba(42,157,143,0.05);
  }

  /* ─── SERVICES ─── */
  #services { background: white; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .service-card {
    background: var(--cream); border-radius: 20px;
    border: 1px solid var(--border);
    padding: 40px 32px; position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 20px;
    background: var(--gradient); opacity: 0;
    transition: opacity 0.3s; z-index: 0;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(38,77,109,0.12); }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover * { color: white !important; border-color: rgba(255,255,255,0.3) !important; }
  .service-card:hover .service-icon-wrap { background: rgba(255,255,255,0.15) !important; border-color: rgba(255,255,255,0.3) !important; }

  .service-card > * { position: relative; z-index: 1; }

  .service-icon-wrap {
    width: 56px; height: 56px; border-radius: 16px;
    background: white; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; font-size: 1.5rem;
    transition: background 0.3s, border-color 0.3s;
  }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; color: var(--blue-deep);
    margin-bottom: 8px;
  }
  .service-subtitle {
    font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 16px; font-weight: 500;
  }
  .service-desc { font-size: 0.88rem; line-height: 1.7; color: var(--text-mid); font-weight: 300; }

  .service-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
  .service-list li {
    font-size: 0.83rem; color: var(--text-mid); font-weight: 300;
    display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
  }
  .service-list li::before {
    content: '→'; color: var(--teal); font-size: 0.75rem; margin-top: 2px; flex-shrink: 0;
    transition: color 0.3s;
  }

  /* ─── APPROCHE ─── */
  #approche { background: var(--cream); }
  .approche-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }

  .approche-item {
    background: white; border-radius: 16px; padding: 32px;
    border: 1px solid var(--border);
    display: flex; gap: 20px; align-items: flex-start;
    transition: box-shadow 0.3s;
  }
  .approche-item:hover { box-shadow: 0 8px 32px rgba(38,77,109,0.08); }

  .approche-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 300; color: var(--mint);
    line-height: 1; flex-shrink: 0; width: 48px;
  }
  .approche-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 600; color: var(--blue-deep);
    margin-bottom: 8px;
  }
  .approche-content p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

  /* ─── RDV ─── */
  #rdv {
    background: var(--blue-deep);
    position: relative; overflow: hidden;
  }
  #rdv::before {
    content: ''; position: absolute;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(42,157,143,0.15) 0%, transparent 70%);
    top: -200px; right: -100px;
  }
  #rdv::after {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(58,124,165,0.1) 0%, transparent 70%);
    bottom: -150px; left: -50px;
  }

  .rdv-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .rdv-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; color: white;
    margin-bottom: 16px; line-height: 1.2;
  }
  .rdv-content h2 em { font-style: italic; color: var(--teal-light); }
  .rdv-content p { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.8; font-weight: 300; margin-bottom: 32px; }

  .rdv-steps { display: flex; flex-direction: column; gap: 16px; }
  .rdv-step {
    display: flex; align-items: center; gap: 16px;
  }
  .rdv-step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(42,157,143,0.2); border: 1px solid rgba(42,157,143,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 500; color: var(--teal-light); flex-shrink: 0;
  }
  .rdv-step-text { font-size: 0.87rem; color: rgba(255,255,255,0.75); font-weight: 300; }

  .rdv-form-wrap {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px; padding: 40px; backdrop-filter: blur(10px);
  }
  .rdv-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; color: white; margin-bottom: 28px;
  }

  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; color: white; font-size: 0.88rem; font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--teal-light);
  }
  .form-group select { cursor: pointer; }
  .form-group select option { background: var(--blue-deep); color: white; }
  .form-group textarea { resize: vertical; min-height: 80px; }

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

  .btn-submit {
    width: 100%; padding: 14px;
    background: var(--gradient); border: none; border-radius: 50px;
    color: white; font-size: 0.9rem; font-weight: 500; font-family: 'DM Sans', sans-serif;
    cursor: pointer; letter-spacing: 0.03em;
    box-shadow: 0 8px 24px rgba(42,157,143,0.4);
    transition: transform 0.2s, box-shadow 0.2s; margin-top: 8px;
  }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(42,157,143,0.5); }

  /* ─── CONTACT ─── */
  #contact { background: white; }
  .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .contact-card {
    background: var(--cream); border-radius: 20px; padding: 36px 28px;
    border: 1px solid var(--border); text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .contact-card:hover { box-shadow: 0 12px 40px rgba(38,77,109,0.1); transform: translateY(-4px); }

  .contact-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: white; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(38,77,109,0.06);
  }
  .contact-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 600; color: var(--blue-deep);
    margin-bottom: 8px;
  }
  .contact-card p, .contact-card a {
    font-size: 0.87rem; color: var(--text-mid); font-weight: 300; line-height: 1.6;
    text-decoration: none; display: block;
  }
  .contact-card a:hover { color: var(--teal); }

  .map-placeholder {
    margin-top: 48px; border-radius: 20px; overflow: hidden;
    height: 320px; background: var(--cream);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--text-light);
    font-style: italic;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--blue-deep);
    padding: 48px 5% 32px;
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px; gap: 40px; flex-wrap: wrap;
  }
  .footer-brand {}
  .footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600; color: white; letter-spacing: 0.05em;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 6px; font-weight: 300; font-style: italic; }

  .footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
  .footer-col h5 {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 16px; font-weight: 500;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none;
    font-weight: 300; transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--teal-light); }

  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-weight: 300; }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: rgba(255,255,255,0.6); }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; text-align: center; padding-bottom: 120px; }
    .hero-content { padding-right: 0; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .hero-logo-wrap { width: 260px; height: 260px; }
    .hero-logo-img { width: 200px; height: 200px; }
    .hero-stats { flex-direction: column; position: static; margin-top: 40px; }
    .about-grid, .rdv-inner { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .approche-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }

  /* ─── HERO ENTRY ANIMATIONS ─── */
  .hero-eyebrow { animation: fadeInDown 0.8s ease 0.1s both; }
  .hero-title { animation: fadeInDown 0.8s ease 0.2s both; }
  .hero-baseline { animation: fadeInDown 0.8s ease 0.3s both; }
  .hero-desc { animation: fadeInDown 0.8s ease 0.4s both; }
  .hero-actions { animation: fadeInDown 0.8s ease 0.5s both; }
  .hero-visual { animation: fadeIn 1.2s ease 0.3s both; }

  @keyframes fadeInDown { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── WPForms styling pour section RDV ─── */
#rdv .wpforms-container { margin: 0; }
#rdv .wpforms-form .wpforms-field { margin-bottom: 14px; }
#rdv .wpforms-form label.wpforms-field-label {
  display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px;
}
#rdv .wpforms-form input[type=text],
#rdv .wpforms-form input[type=email],
#rdv .wpforms-form input[type=tel],
#rdv .wpforms-form select,
#rdv .wpforms-form textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; color: white; font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif; outline: none;
  transition: border-color 0.2s;
}
#rdv .wpforms-form input[type=text]::placeholder,
#rdv .wpforms-form input[type=email]::placeholder,
#rdv .wpforms-form input[type=tel]::placeholder,
#rdv .wpforms-form textarea::placeholder { color: rgba(255,255,255,0.3); }
#rdv .wpforms-form input:focus,
#rdv .wpforms-form select:focus,
#rdv .wpforms-form textarea:focus { border-color: #52c7bb; }
#rdv .wpforms-form select option { background: #264d6d; color: white; }
#rdv .wpforms-form textarea { min-height: 80px; resize: vertical; }
#rdv .wpforms-form .wpforms-submit-container { margin-top: 8px; }
#rdv .wpforms-form button[type=submit],
#rdv .wpforms-form input[type=submit] {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, #2a9d8f 0%, #3a7ca5 50%, #264d6d 100%);
  border: none; border-radius: 50px;
  color: white; font-size: 0.9rem; font-weight: 500;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  box-shadow: 0 8px 24px rgba(42,157,143,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
#rdv .wpforms-form button[type=submit]:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(42,157,143,0.5); }
#rdv .wpforms-confirmation-container-full { color: white; text-align: center; padding: 24px; font-size: 1rem; }

/* ═══════════════════════════════════════════
   RESPONSIVE COMPLET — Mobile First
   ═══════════════════════════════════════════ */

/* ── Tablette (max 1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 0 4%; }
  .nav-links { gap: 20px; }
  #hero { padding: 90px 4% 60px; gap: 40px; }
  .hero-content { padding-right: 24px; }
  .hero-photo-wrap { width: 320px; height: 400px; }
  .hero-photo-img { height: 390px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .rdv-inner { gap: 48px; }
}

/* ── Mobile large (max 768px) ── */
@media (max-width: 768px) {

  /* NAV MOBILE */
  nav {
    padding: 0 5%;
    height: 64px;
  }
  .nav-links { display: none; }
  .nav-logo-text { font-size: 1.2rem; }
  .nav-logo img { height: 36px; }

  /* Burger menu */
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; z-index: 200;
  }
  .nav-burger span {
    display: block; width: 24px; height: 2px;
    background: var(--blue-deep); border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-mobile-menu {
    display: none;
    position: fixed; inset: 0; z-index: 150;
    background: rgba(253,252,250,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    font-size: 1.5rem; font-family: 'Cormorant Garamond', serif;
    color: var(--blue-deep); text-decoration: none; font-weight: 300;
  }
  .nav-mobile-menu a.nav-cta-mobile {
    background: var(--gradient); color: white;
    padding: 14px 36px; border-radius: 50px;
    font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 500;
  }
  .nav-mobile-close {
    position: absolute; top: 20px; right: 20px;
    font-size: 1.8rem; cursor: pointer; color: var(--text-mid);
    background: none; border: none; padding: 8px;
  }

  /* HERO */
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 5% 40px;
    min-height: auto;
  }
  .hero-content { padding-right: 0; order: 2; }
  .hero-visual { order: 1; margin-bottom: 16px; }
  .hero-eyebrow { justify-content: center; font-size: 0.7rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-baseline { font-size: 0.95rem; }
  .hero-desc { font-size: 0.88rem; margin: 0 auto 32px; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }

  .hero-photo-wrap { width: 240px; height: 300px; }
  .hero-photo-img { height: 295px; }
  .hero-photo-badge {
    right: -8px; bottom: 12px;
    padding: 8px 12px;
  }
  .hero-photo-badge span { font-size: 0.85rem; }

  .hero-stats {
    position: static;
    flex-direction: row; flex-wrap: wrap;
    margin-top: 32px; gap: 8px;
  }
  .stat-item { flex: 1; min-width: 90px; padding: 14px 10px; border-radius: 12px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.65rem; }

  /* SECTIONS */
  section { padding: 64px 5%; }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-quote-wrap img { max-height: 320px; object-fit: cover; object-position: top; border-radius: 16px; }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }
  .service-card:hover { transform: none; }

  /* FORMATS */
  #services > div:last-child > div { grid-template-columns: 1fr !important; }

  /* APPROCHE */
  .approche-grid { grid-template-columns: 1fr; gap: 12px; }
  .approche-item { padding: 24px; }

  /* RDV */
  #rdv { padding: 64px 5%; }
  .rdv-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rdv-content h2 { font-size: 2rem; }
  .rdv-form-wrap { padding: 28px 20px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 28px 20px; }

  /* FOOTER */
  .footer-top {
    flex-direction: column; gap: 32px;
  }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal { justify-content: center; }

  /* SECTION HEADERS */
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 0.88rem; }
}

/* ── Mobile petit (max 480px) ── */
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-photo-wrap { width: 200px; height: 260px; }
  .hero-photo-img { height: 255px; }
  .hero-stats { flex-direction: column; }
  .stat-item { width: 100%; }
  .rdv-content h2 { font-size: 1.7rem; }
  .section-title { font-size: 1.6rem; }
  .about-content h3 { font-size: 1.4rem; }
  .service-title { font-size: 1.15rem; }
  .footer-links { flex-direction: column; gap: 24px; }
}

/* ─── Page statique (Mentions légales, Politique...) ─── */
.page-content-wrap {
  min-height: 70vh;
  padding: 120px 5% 80px;
  background: var(--warm-white);
}
.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--blue-deep);
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--teal);
}
.page-body {
  margin-top: 32px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.page-body h1, .page-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--blue-deep);
  margin-top: 36px;
  margin-bottom: 12px;
}
.page-body h1 { font-size: 1.5rem; }
.page-body h2 { font-size: 1.2rem; color: var(--teal); }
.page-body p { margin-bottom: 14px; font-weight: 300; }
.page-body ul { padding-left: 24px; margin-bottom: 14px; }
.page-body ul li { margin-bottom: 6px; font-weight: 300; }
.page-body strong { color: var(--blue-deep); font-weight: 500; }

@media (max-width: 768px) {
  .page-content-wrap { padding: 96px 5% 64px; }
  .page-title { font-size: 1.8rem; }
}
