html {
  scroll-behavior: smooth;
}

:root {
  --bg-main: #f3f3f3;
  --text-main: #111111;
  --text-muted: #666666;
  --accent: #ffd400;
  --accent-dark: #f7c800;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========== BANDE EMAIL ========== */

.top-bar {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-inner .icon,
.top-bar-icon {
  font-size: 15px;
}

.top-bar-inner a,
.top-bar-mail {
  color: #ffd400;
}

/* ========== HEADER ========== */

.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 600;            /* ou 500 selon le rendu désiré */
  font-size: 40px;
  letter-spacing: 0.14em;      /* augmente si tu veux un effet plus espacé */
  color: #c29b4d;
  text-transform: uppercase;
}



.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 16px;
}

.nav a,
.nav-link {
  color: #6e6e8d;
  font-weight: 500;
}

.nav a:hover,
.nav-link:hover {
  color: #222;
}

.nav-link.active {
  color: #000;
}

/* Bouton jaune du header */
.btn-primary {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-primary .arrow {
  margin-top: 2px;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ========== HERO ========== */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-text {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(32px, 3vw + 8px, 52px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title span {
  display: block;
}

.hero-body {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 650px;
}

.hero-body p {
  margin-bottom: 12px;
}

.hero-body p:last-child {
  margin-bottom: 0;
}

/* Bouton "Réserver un appel" */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 28px;
  background: #ffd400;
  border: 2px solid #ffd400;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.2s ease;
  align-self: flex-start;
}

.btn-hero:hover {
  background: #f0c500;
  border-color: #f0c500;
  transform: translateY(-2px);
}

/* Photo droite */
.hero-photo-wrapper {
  display: flex;
  justify-content: center;
}

.photo-frame {
  border: 10px solid var(--accent);
  background: #000;
  max-width: 360px;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== BIOGRAPHIE ========== */

.bio-section {
  padding: 80px 0;
  background: #f3f3f3;
}

.bio-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bio-title {
  font-size: clamp(32px, 3vw + 6px, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.bio-body {
  max-width: 950px;
  font-size: 16px;
  color: var(--text-muted);
}

.bio-body p {
  margin-bottom: 14px;
}

.bio-body p:last-child {
  margin-bottom: 0;
}

/* ========== AVANTAGES ========== */

.features {
  background: #111118;
  color: #ffffff;
  padding: 60px 0 80px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  border-left: 1px solid #2a2a34;
  border-right: 1px solid #2a2a34;
}

.feature-card {
  padding: 24px 24px 24px 32px;
  border-left: 1px solid #2a2a34;
}

.feature-card:first-child {
  border-left: none;
}

.feature-icon {
  margin-bottom: 18px;
}

.feature-icon img {
  width: 60px;   /* change ici si tu veux plus/moins grand */
  height: auto;
  display: block;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #d6d6d6;
}

/* ========== BLOC JAUNE CTA ========== */

.cta-banner {
  background: #ffffff;
  padding-bottom: 80px;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 60px;
  background: #ffd400;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.cta-text h2 {
  font-size: clamp(30px, 2.8vw + 8px, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cta-form {
  display: flex;
  justify-content: flex-end;
}

.cta-input-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  max-width: 460px;
  width: 100%;
}

.cta-input-wrapper input {
  border: 1px solid #111111;
  padding: 14px 18px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  outline: none;
}

.cta-input-wrapper input::placeholder {
  color: #888888;
}

.cta-send {
  border: none;
  background: #111111;
  color: #ffd400;
  padding: 0 28px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== CONTACT PAGE ========== */

.contact-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 90px 24px 120px;
  background: #ffffff;
}

.contact-title {
  font-size: clamp(34px, 3vw + 10px, 52px);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 40px;
}

.contact-card {
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card--phone {
  background: #ffd400;
}

.contact-card--email {
  background: #f5f5f5;
}

.contact-icon {
  margin-bottom: 26px;
}

.contact-card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card-text {
  font-size: 16px;
  font-weight: 400;
}

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

.contact-card-text a:hover {
  text-decoration: underline;
}

/* ========== MON PROCESSUS DE TRAVAIL ========== */

.process-section {
  background: #111118;
}

.process-title-bar {
  padding: 40px 0 30px;
  text-align: center;
}

.process-title-bar h2 {
  font-size: clamp(30px, 3vw + 6px, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffd400;
}

.process-content {
  background: #ffffff;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 90px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.process-card {
  padding: 0 60px;
}

.process-card:first-child {
  border-right: 1px solid #e0e0e0;
}

.process-icon {
  margin-bottom: 24px;
}

.process-icon img {
  width: 60px;   /* tu peux ajuster ici aussi */
  height: auto;
  display: block;
}

.process-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}

.process-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1000px) {
  .features-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: none;
    border-right: none;
  }

  .feature-card {
    border-left: none;
    border-top: 1px solid #2a2a34;
  }

  .feature-card:first-child,
  .feature-card:nth-child(2) {
    border-top: none;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-form {
    justify-content: flex-start;
  }

  .contact-main {
    padding: 60px 20px 80px;
  }

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

  .contact-card {
    padding: 32px 26px;
  }

  .process-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    border-left: none;
    border-right: none;
  }

  .process-card {
    padding: 0;
    border-right: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-photo-wrapper {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .cta-inner {
    padding: 36px 24px;
  }

  .cta-input-wrapper {
    max-width: 100%;
  }
}
/* ========== SERVICES PROPOSÉS ========== */

.services-section {
  background: #111118;
  color: #ffffff;
  padding: 70px 0 90px;
}

.services-head {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
  text-align: center;
}

.services-head h2 {
  font-size: clamp(32px, 3vw + 10px, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffd400;
  margin-bottom: 18px;
}

.services-head p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  color: #e4e4e4;
}

/* grille de cartes */

.services-grid {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #3c3c3c;
}

.service-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #555555;
}

.service-col:last-child {
  border-right: none;
}

.service-block {
  padding: 40px 40px 36px;
  border-top: 1px solid #555555;
}

.service-col:first-child .service-block:first-child {
  border-top: none;
}
.service-col:nth-child(2) .service-block:first-child {
  border-top: none;
}
.service-col:nth-child(3) .service-block:first-child {
  border-top: none;
}

.service-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffd400;
  margin-bottom: 16px;
}

.service-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* lignes de titres en dessous */

.services-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-list-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 32px;
}

.services-list-item span {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  padding-bottom: 8px;
  border-bottom: 2px solid #555555;
}

/* responsive */

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-col {
    border-right: none;
    border-bottom: 1px solid #555555;
  }

  .service-col:last-child {
    border-bottom: none;
  }

  .services-list-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* ========== POURQUOI TRAVAILLER AVEC MOI ========== */

.why-section {
  background: #ffffff;
  padding: 70px 0 80px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.why-inner h2 {
  font-size: clamp(32px, 3vw + 10px, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: #ffd400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon-circle img {
  width: 46px;
  height: auto;
  display: block;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 260px;
}

.why-note {
  font-size: 15px;
  font-style: italic;
  color: var(--text-main);
  max-width: 900px;
  margin: 0 auto;
}

/* ========== COMPÉTENCES CLÉS ========== */

.skills-section {
  background: #f5f5f5;
  padding: 70px 0 90px;
}

.skills-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 60px;
  align-items: center;
}

.skills-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.skills-content h2 {
  font-size: clamp(30px, 3vw + 8px, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.skills-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.skills-content p:last-child {
  margin-bottom: 0;
}

/* Responsive pour ces 2 sections */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .skills-inner {
    grid-template-columns: 1fr;
  }

  .skills-image {
    order: -1; /* image au-dessus du texte sur mobile */
  }
}
/* =====================
   SECTION ÉVALUATION DES BESOINS
   ===================== */

.needs-section {
  background: #ffffff;
  padding: 100px 0;
}

.needs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.needs-text h2 {
  font-size: clamp(32px, 3vw + 8px, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.needs-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.needs-photo img {
  width: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .needs-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* =====================
   FOOTER
   ===================== */

.site-footer {
  background: #111118;
  color: #f5f5f5;
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  letter-spacing: 0.12em;
  color: #c29b4d;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: #dcdcdc;
  max-width: 320px;
}

.footer-title {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-legal-title {
  margin-top: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a,
.footer-links span {
  font-size: 14px;
  color: #d4d4d4;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Bas du footer */

.footer-bottom {
  border-top: 1px solid #262633;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #b9b9b9;
}

.footer-bottom-right {
  opacity: 0.9;
}

/* Responsive footer */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

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