* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --orange: #f65d19;
  --orange-dark: #d84d11;
  --black: #0d0d0d;
  --black-soft: #171717;
  --white: #ffffff;
  --offwhite: #f7f7f7;
  --light: #f3f3f3;
  --line: rgba(0, 0, 0, 0.08);
  --muted: #5f5f5f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
  --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.07);
  --radius: 24px;
  --container: 1200px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  height: 58px;
  width: auto;
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff7a30);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(246, 93, 25, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}


.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(10,10,10,0.86), rgba(10,10,10,0.58)),
    url('img/a-venir.jpg') center center / cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246,93,25,0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 30%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 110px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,93,25,0.22), rgba(246,93,25,0));
  filter: blur(8px);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.46), rgba(0,0,0,0.14)),
    linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.18));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 94px);
  padding: 78px 0 72px;
}


.eyebrow {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.78);
}

.eyebrow-dark {
  color: var(--orange);
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
}

.hero-text {
  max-width: 700px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


.point-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(5px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.point-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.point-card span {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}


.hero-panel {
  width: 100%;
  max-width: 470px;
  padding: 24px 28px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  color: var(--black);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.55);
}

.hero-panel-logo {
  width: 100%;
  max-width: 330px;
  margin-bottom: 16px;
}

.hero-panel-divider {
  width: 84px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  margin-bottom: 20px;
}

.hero-panel-title {
  margin: 0 0 18px;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-panel-title-centered {
  text-align: center;
}

.hero-panel ul {
  margin: 0;
  padding-left: 20px;
}

.hero-panel li + li {
  margin-top: 12px;
}

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: linear-gradient(to bottom, #fafafa, #f3f3f3);
}

.section-dark {
  background: linear-gradient(135deg, #101010, #1b1b1b);
  color: var(--white);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 18px;
}

.section p {
  color: var(--muted);
}

.section-dark p {
  color: rgba(255,255,255,0.76);
}

.about-grid,
.contact-grid,
.value-grid {
  display: grid;
  gap: 28px;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-card {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

/* --- SECTION SERVICES MISE � JOUR --- */
.services-showcase {
  background: linear-gradient(135deg, #f5f5f5, #efefef);
  position: relative;
  overflow: hidden;
}

.services-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 480px;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0.018),
    rgba(0,0,0,0.018) 2px,
    transparent 2px,
    transparent 16px
  );
  opacity: 0.7;
  pointer-events: none;
}

.services-header-centered {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.services-header-centered h2 {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  margin-bottom: 16px;
}

.services-intro {
  font-size: 1.08rem;
  color: #626262;
  max-width: 760px;
  margin: 0 auto;
}

.services-grid-modern {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-modern {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
  border-color: rgba(246, 93, 25, 0.18);
}

.service-icon-wrap {
  flex: 0 0 114px;
  width: 114px;
  height: 114px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff7f2, #f4e6dc);
  border: 1px solid rgba(246, 93, 25, 0.10);
  display: grid;
  place-items: center;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.service-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.10));
}

.service-card-content h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-line {
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  margin: 14px 0 16px;
}

.service-card-content p {
  margin: 0;
  font-size: 1rem;
  color: #5d6470;
}

/* --- reste du site inchang� --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card,
.value-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.placeholder-card {
  overflow: hidden;
}

.placeholder-visual {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(135deg, #f8f8f8, #ececec);
  border-bottom: 1px solid var(--line);
}

.placeholder-icon {
  font-size: 3rem;
  color: rgba(0,0,0,0.22);
  line-height: 1;
}

.placeholder-text {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.06em;
}

.project-content {
  padding: 24px;
}

.project-content h3,
.value-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.value-card h3,
.value-card p {
  color: var(--white);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  color: var(--black);
}

.contact-form {
  padding: 28px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.12);
  margin-bottom: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(246, 93, 25, 0.55);
  box-shadow: 0 0 0 4px rgba(246, 93, 25, 0.10);
}

.form-btn {
  width: 100%;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.contact-status {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  display: none;
}

.contact-status.is-success {
  display: block;
  background: rgba(18, 124, 54, 0.1);
  color: #0d6d2d;
  border: 1px solid rgba(18, 124, 54, 0.25);
}

.contact-status.is-error {
  display: block;
  background: rgba(182, 33, 33, 0.1);
  color: #8a1717;
  border: 1px solid rgba(182, 33, 33, 0.25);
}

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.86);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 0 1 auto;
}

.footer-rbq {
  margin: 0;
  white-space: nowrap;
}

.footer-copy {
  margin: 0 0 0 auto;
  text-align: right;
}

.footer-logo {
  height: 52px;
  width: auto;
  background: white;
  padding: 8px 10px;
  border-radius: 12px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .projects-grid,
  .value-grid,
  .services-grid-modern {
    grid-template-columns: 1fr 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .projects-grid,
  .value-grid,
  .services-grid-modern {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 56px 0;
  }

  .hero-side {
    justify-content: flex-start;
  }

  .service-card-modern {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    gap: 10px;
  }

  .footer-copy {
    margin-left: 0;
    text-align: left;
  }

  .brand-logo {
    height: 52px;
  }

  .services-showcase::before {
    display: none;
  }
}


.gallery-card {
  overflow: hidden;
}


.project-gallery {
  position: relative;
  height: 260px;
  background: #f3f3f3;
}

.gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease;
  cursor: zoom-in;
}

.gallery-image.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.72);
  color: #fff;
  font-size: 1.35rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-arrow:hover,
.lightbox-arrow:hover,
.lightbox-close:hover {
  background: rgba(246, 93, 25, 0.92);
}

.gallery-arrow-left {
  left: 14px;
}

.gallery-arrow-right {
  right: 14px;
}

.gallery-dots {
  display: none;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.gallery-dot.is-active {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 88px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-stage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  width: min(100%, 1200px);
  max-width: 1200px;
  max-height: min(82vh, 900px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  background: #111;
}

.lightbox-arrow,
.lightbox-close {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 1.6rem;
}

.lightbox-arrow-left {
  left: 24px;
}

.lightbox-arrow-right {
  right: 24px;
}

@media (max-width: 860px) {
  .lightbox {
    padding: 24px 18px 32px;
  }

  .lightbox-image {
    max-height: 72vh;
  }

  .lightbox-arrow {
    width: 46px;
    height: 46px;
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .lightbox-arrow-left {
    left: calc(50% - 58px);
  }

  .lightbox-arrow-right {
    right: calc(50% - 58px);
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}


#top {
  position: absolute;
  top: 0;
}

#apropos,
#realisations,
#contact {
  scroll-margin-top: 104px;
}

#services {
  scroll-margin-top: 72px;
}

.footer-credit {
    margin-top: 15px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
}
.footer-credit a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}
.footer-credit a:hover {
    color: #fff;
}


.hero-content {
  position: relative;
}

.hero-content::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,0.55));
}

.hero-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-panel-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #444;
  font-size: 0.84rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero {
    background-position: center center;
  }

  .hero::after {
    right: -160px;
    top: auto;
    bottom: 40px;
  }
}




/* Floating CTA Button */

.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #f65d19;
    color: #fff;
    padding: 12px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s;
}


.floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.34);
    background: #ff6f2b;
}

@media (max-width: 768px) {
    
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #f65d19;
    color: #fff;
    padding: 12px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s;
}

}



.footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 10px;
}


.footer-socials-label {
    font-size: 12px;
    color: #aaa;
    margin-right: 2px;
}


.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}


.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}


.social-link img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}


/* Header Social Icons */
.header-socials {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}


.header-socials img {
    width: 34px;
    height: 34px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}


.header-socials a:hover img {
    transform: translateY(-2px);
    opacity: 0.8;
}


/* Header vertical alignment fix */
header .container {
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-socials {
    display: flex;
    align-items: center;
}


/* --- Ajustements responsive mobile sans modifier le visuel desktop --- */
body {
  overflow-x: hidden;
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.nav {
  align-items: center;
  flex-wrap: wrap;
}

.hero-content,
.hero-side,
.hero-panel,
.service-card-modern,
.project-card,
.about-card,
.contact-form,
.value-card {
  min-width: 0;
}

.project-gallery {
  overflow: hidden;
}

@media (max-width: 860px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header {
    position: sticky;
  }

  .nav-wrap {
    gap: 12px;
  }

  .nav {
    font-size: 0.78rem;
    gap: 12px 14px;
  }

  .header-socials {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .hero-grid {
    gap: 24px;
    padding: 42px 0 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 9vw, 3.4rem);
    line-height: 1.08;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    gap: 12px;
  }

  .hero-panel {
    max-width: 100%;
    padding: 22px 20px 24px;
    border-radius: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading,
  .services-header-centered {
    margin-bottom: 28px;
  }

  .service-card-modern {
    gap: 18px;
    padding: 22px;
    min-height: 0;
  }

  .service-icon-wrap {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .project-gallery {
    height: 230px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-wrap,
  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-copy,
  .footer-rbq {
    text-align: center;
    white-space: normal;
  }

  #apropos,
  #realisations,
  #contact,
  #services {
    scroll-margin-top: 132px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 46px;
  }

  .nav-wrap {
    min-height: auto;
    padding: 12px 0;
  }

  .nav {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    gap: 10px 12px;
  }

  .nav a::after {
    bottom: -5px;
  }

  .eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.74rem;
  }

  .section h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-grid {
    padding: 34px 0 40px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.4vw, 2.8rem);
  }

  .hero-content::after {
    width: 72px;
    margin-top: 18px;
  }

  .point-card {
    padding: 16px;
  }

  .hero-panel ul {
    padding-left: 18px;
  }

  .about-card {
    padding: 22px;
  }

  .services-intro,
  .service-card-content p,
  .project-content p,
  .section p,
  .contact-list {
    font-size: 0.96rem;
  }

  .service-card-modern {
    padding: 20px;
    border-radius: 22px;
  }

  .service-card-content h3,
  .project-content h3,
  .value-card h3 {
    font-size: 1.08rem;
  }

  .project-gallery {
    height: 210px;
  }

  .project-content {
    padding: 20px;
  }

  .gallery-arrow-left {
    left: 10px;
  }

  .gallery-arrow-right {
    right: 10px;
  }

  .contact-form {
    padding: 18px;
    border-radius: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px;
    border-radius: 14px;
  }

  .floating-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    text-align: center;
    justify-content: center;
    padding: 13px 16px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .nav {
    font-size: 0.68rem;
    gap: 8px 10px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .project-gallery {
    height: 190px;
  }
}

/* --- Dynamisme visuel --- */
.hero {
  --mx: 0px;
  --my: 0px;
}

.hero::after {
  transform: translate3d(calc(var(--mx) * 0.015), calc(var(--my) * 0.015), 0);
  animation: heroGlowFloat 9s ease-in-out infinite;
}

.hero::before {
  animation: heroScan 11s linear infinite;
}

@keyframes heroGlowFloat {
  0% { transform: translate3d(-8px, -4px, 0) scale(1); }
  50% { transform: translate3d(10px, 6px, 0) scale(1.08); }
  100% { transform: translate3d(-8px, -4px, 0) scale(1); }
}

@keyframes heroScan {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 220px 0, 0 0; }
}

.service-card-modern,
.project-card,
.about-card,
.contact-form,
.point-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card-modern:hover,
.project-card:hover,
.about-card:hover,
.contact-form:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
}

.service-card-modern::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.35) 50%, transparent 82%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
}

.service-card-modern:hover::after,
.project-card:hover::after {
  transform: translateX(120%);
}

.nav a.is-active {
  color: var(--orange-dark);
}

.nav a.is-active::after {
  width: 100%;
}

.floating-cta {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(0,0,0,0.25), 0 0 0 0 rgba(246, 93, 25, 0.38); }
  50% { box-shadow: 0 16px 34px rgba(0,0,0,0.30), 0 0 0 10px rgba(246, 93, 25, 0); }
}

.reveal-ready {
  opacity: 0;
  transform: translateY(34px) scale(0.975);
  filter: blur(6px);
}

.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(.2,.7,.2,1), filter 0.72s ease;
}

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero::before,
  .floating-cta {
    animation: none !important;
  }
  .reveal-ready,
  .reveal-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
