/* =============================================================
   cartell studio — style.css v5
   accent #FC4D21, fond blanc pur, caractère
   ============================================================= */
@import url('colors_and_type.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
main { display: block; margin: 0; padding: 0; width: 100%; }
.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; }

/* =============================================================
   NAV
   ============================================================= */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.nav-wrap.scrolled {
  background: #fff;
  border-bottom-color: #1A1A14;
  box-shadow: 0 2px 24px rgba(26,26,20,.08);
}
.nav-logo svg { height: 22px; width: auto; color: var(--ink); display: block; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13px;
  font-weight: var(--w-regular);
  text-transform: lowercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color var(--t-quick) var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-wrap.scrolled .nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-size: 13px;
  font-weight: var(--w-bold);
  text-transform: lowercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color var(--t-quick) var(--ease), border-color var(--t-quick) var(--ease);
}
.nav-cta:hover { color: #fff; border-color: #fff; }
.nav-wrap.scrolled .nav-cta { color: var(--accent); border-bottom-color: var(--accent); font-weight: var(--w-regular); }
.nav-wrap.scrolled .nav-cta:hover { opacity: .65; }
.nav-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }

@media (max-width: 860px) {
  .nav-wrap { padding: 18px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* =============================================================
   BUTTONS — pills, accent orange
   ============================================================= */
.btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--w-regular);
  text-transform: lowercase;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t-quick) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  background: none;
  line-height: 1;
}
.btn:active { transform: scale(.98); }
/* primaire — orange */
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: #e03d12; border-color: #e03d12; }
/* outline sombre */
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
/* outline blanc — sur fond coloré */
.btn-outline-white { border-color: #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--accent); }

/* bouton sur sections à fond gradient */
.apropos-wrap .btn-outline-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.apropos-wrap .btn-outline-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
/* texte seul */
.btn-text { padding: 13px 0; color: var(--ink); border: none; font-size: 14px; }
.btn-text:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.btn-text-white { padding: 13px 0; color: #fff; border: none; font-size: 14px; }
.btn-text-white:hover { opacity: .7; }

/* =============================================================
   HERO — fond blanc, typo dominante
   ============================================================= */
.hero {
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  padding-top: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-content { padding: 0 48px 72px; width: 100%; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.hero-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 999px;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: var(--w-bold);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--ink);
  max-width: 14ch;
}
.hero-sub {
  margin-top: 32px;
  font-size: 18px;
  font-weight: var(--w-regular);
  line-height: 1.6;
  color: var(--ink);
  max-width: 48ch;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 720px) {
  .hero { justify-content: center; }
  .hero-content { padding: 24px; }
  .hero h1 { font-size: 48px; }
  .hero-sub { font-size: 16px; }
}

/* =============================================================
   SERVICES — scènes pleine largeur
   ============================================================= */
.services-section { border-bottom: 1px solid #1A1A14; }
.services-label {
  padding: 64px 48px 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #1A1A14;
}
.services-label h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--w-bold);
  letter-spacing: -0.03em;
}
.scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ink-faint);
  min-height: 420px;
}
.scene:last-of-type { border-bottom: none; }
.scene-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--ink-faint);
  justify-content: center;
}
.scene.reverse .scene-text {
  border-right: none;
  border-left: 1px solid var(--ink-faint);
  order: 2;
}
.scene.reverse .scene-visual { order: 1; }
.scene-num {
  font-size: 11px;
  font-weight: var(--w-regular);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--accent);
}
.scene-text h3 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: var(--w-bold);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}
.scene-text p {
  font-size: 16px;
  font-weight: var(--w-regular);
  line-height: 1.65;
  color: var(--ink);
  max-width: 44ch;
}
.scene-text ul { display: flex; flex-direction: column; gap: 8px; }
.scene-text ul li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}
.scene-text ul li::before { content: '–'; position: absolute; left: 0; color: var(--ink-soft); }
.scene-avail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--accent);
  font-weight: var(--w-regular);
}
.scene-avail::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 999px;
}
.scene-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.scene-visual {
  position: relative;
  background: #F5F5F3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  overflow: hidden;
  min-height: 420px;
}
.scene-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.surmesure {
  padding: 32px 48px;
  font-size: 15px;
  color: var(--ink);
  border-top: 1px solid var(--ink-faint);
}
.surmesure a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 860px) {
  .scene { grid-template-columns: 1fr; min-height: unset; }
  .scene.reverse .scene-text { order: unset; border-left: none; }
  .scene.reverse .scene-visual { order: unset; }
  .scene-text { border-right: none; border-bottom: 1px solid var(--ink-faint); padding: 40px 24px; }
  .scene-visual { min-height: 280px; }
  .services-label { padding: 48px 24px 32px; }
  .surmesure { padding: 24px; }
}

/* =============================================================
   PORTFOLIO — carrousel
   ============================================================= */
.portfolio-wrap {
  padding: 80px 48px;
  border-top: 1px solid #1A1A14;
  border-bottom: 1px solid #1A1A14;
  background: #fff;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: var(--w-bold);
  letter-spacing: -0.03em;
}
.carousel-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  margin: 0 -48px;
}
.carousel-track-wrap:active { cursor: grabbing; }
.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 48px 8px;
  list-style: none;
  transition: transform var(--t-slow) var(--ease);
  will-change: transform;
}
.carousel-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 380px;
}
.carousel-img {
  width: 380px;
  aspect-ratio: 3/4;
  border-radius: 12px;
  background: #F5F5F3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  position: relative;
}
.carousel-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s var(--ease);
}
.carousel-card:hover .carousel-photo { filter: grayscale(0); }
.carousel-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.project-name { font-size: 17px; font-weight: var(--w-bold); letter-spacing: -0.02em; }
.project-cat { font-size: 12px; color: var(--ink-soft); text-transform: lowercase; }
.carousel-nav {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}
.carousel-btn {
  font-size: 16px;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-quick) var(--ease);
}
.carousel-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.carousel-btn:disabled { opacity: .2; cursor: default; }
.carousel-btn:disabled:hover { background: #fff; color: var(--ink); border-color: var(--ink); }

@media (max-width: 720px) {
  .portfolio-wrap { padding: 56px 24px; }
  .carousel-track-wrap { margin: 0 -24px; }
  .carousel-track { padding: 0 24px 8px; }
  .carousel-card { width: 280px; }
  .carousel-img { width: 280px; }
}

/* =============================================================
   SOCIAL PROOF — fond blanc
   ============================================================= */
.proof-wrap { padding: 80px 48px; background: #fff; }
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.testimonial {
  background: #F5F5F3;
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial blockquote p {
  font-size: 18px;
  font-weight: var(--w-regular);
  line-height: 1.55;
  color: var(--ink);
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.testimonial figcaption strong { font-size: 14px; font-weight: var(--w-bold); color: var(--ink); }
.testimonial figcaption span { font-size: 13px; color: var(--ink-soft); }
.logos-strip {
  padding-top: 40px;
  border-top: 1px solid var(--ink-faint);
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.logos-strip img { height: 24px; opacity: .35; filter: grayscale(1); transition: opacity var(--t-quick) var(--ease); }
.logos-strip img:hover { opacity: .65; }
.logos-placeholder { font-size: 13px; color: var(--ink-soft); text-transform: lowercase; letter-spacing: 0.06em; }

@media (max-width: 720px) {
  .proof-wrap { padding: 56px 24px; }
  .testimonials { grid-template-columns: 1fr; }
}

/* =============================================================
   À PROPOS — fond contact-bg.png via background-image CSS
   ============================================================= */
.apropos-wrap {
  padding: 80px 48px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.apropos-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.apropos-text { display: flex; flex-direction: column; gap: 24px; }
.apropos-eyebrow {
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.7);
}
.apropos-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: var(--w-bold);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
.apropos-text p {
  font-size: 17px;
  line-height: 1.65;
  color: #fff;
  font-weight: var(--w-regular);
}
.apropos-img {
  border-radius: 16px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.apropos-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s var(--ease);
}
.apropos-img:hover img { filter: grayscale(0); }

@media (max-width: 720px) {
  .apropos-wrap { padding: 56px 24px; }
  .apropos-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =============================================================
   BLOG — fond noir
   ============================================================= */
.blog-wrap {
  padding: 80px 48px;
  background: var(--ink);
  border-bottom: 1px solid #1A1A14;
}
.blog-wrap .section-head h2 { color: #fff; }
.blog-wrap .btn-text { color: rgba(255,255,255,.6); }
.blog-wrap .btn-text:hover { color: #fff; }
.blog-list { display: flex; flex-direction: column; }
.blog-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
  transition: opacity var(--t-quick) var(--ease);
}
.blog-row:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.blog-row:hover { opacity: .5; }
.blog-row-left { display: flex; align-items: baseline; gap: 24px; }
.blog-cat {
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  min-width: 140px;
  flex-shrink: 0;
}
.blog-title { font-size: 18px; font-weight: var(--w-bold); letter-spacing: -0.02em; color: #fff; }
.blog-date { font-size: 13px; color: rgba(255,255,255,.4); white-space: nowrap; }

@media (max-width: 720px) {
  .blog-wrap { padding: 56px 24px; }
  .blog-row { flex-direction: column; gap: 6px; }
  .blog-row-left { flex-direction: column; gap: 4px; }
  .blog-cat { min-width: unset; }
}

/* =============================================================
   CTA FINAL — fond accent orange uni
   ============================================================= */
.cta-wrap {
  position: relative;
  overflow: hidden;
  padding: 96px 48px;
  background: var(--accent);
}
.cta-grain {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  mix-blend-mode: overlay; opacity: .2;
  pointer-events: none;
}
.cta-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.cta-left h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: var(--w-bold);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}
.cta-left p {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.8);
  font-weight: var(--w-regular);
}
.field input, .field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--w-regular);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.12);
  color: #fff;
  outline: none;
  width: 100%;
  transition: border-color var(--t-quick) var(--ease), background var(--t-quick) var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.45); }
.field input:focus, .field textarea:focus {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.18);
}

@media (max-width: 860px) {
  .cta-wrap { padding: 72px 24px; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================================
   FOOTER — fond noir, logo géant
   ============================================================= */
.footer { background: var(--ink); }
.footer-top {
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-brand svg { height: 20px; width: auto; color: #fff; }
.footer-brand p { font-weight: 400; font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 26ch; }
.footer-col h5 {
  font-size: 11px;
  font-weight: var(--w-regular);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,.75); transition: color var(--t-quick) var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-wordmark {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 32px 48px 0;
  overflow: hidden;
}
.footer-wordmark svg { width: 100%; height: auto; opacity: .07; display: block; color: #fff; }
.footer-stamp {
  padding: 20px 48px 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: lowercase;
  letter-spacing: 0.06em;
}
.footer-stamp a { color: var(--ink-soft); transition: color var(--t-quick) var(--ease); }
.footer-stamp a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px 36px; }
  .footer-wordmark { padding: 28px 24px 0; }
  .footer-stamp { padding: 16px 24px 32px; flex-direction: column; gap: 4px; }
}
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

.btn-scene {
  border-color: var(--accent);
  color: var(--accent);
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: var(--w-regular);
  text-transform: lowercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t-quick) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  border-width: 1.5px;
  border-style: solid;
  background: none;
  cursor: pointer;
  line-height: 1;
}
.btn-scene:hover { background: var(--accent); color: #fff; }

.surmesure-bold {
  font-size: 17px;
  font-weight: var(--w-bold);
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 40px 48px;
  border-top: 1px solid var(--ink-faint);
}
.surmesure-bold a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.project-cat-accent { color: var(--accent); }

.cta-wrap-white {
  padding: 96px 48px;
  background: #fff;
  border-top: none;
  position: relative;
}
.cta-wrap-white .cta-grid { position: relative; z-index: 1; }
.cta-wrap-white .cta-left h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: var(--w-bold);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}
.cta-wrap-white .cta-left h2 span { color: var(--accent); }
.cta-wrap-white .cta-left p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: var(--w-regular);
}
.cta-wrap-white .field label { color: var(--ink-soft); }
.cta-wrap-white .field input,
.cta-wrap-white .field textarea {
  border: 1.5px solid var(--ink-faint);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  outline: none;
  width: 100%;
  transition: border-color var(--t-quick) var(--ease);
}
.cta-wrap-white .field input::placeholder,
.cta-wrap-white .field textarea::placeholder { color: var(--ink-mute); }
.cta-wrap-white .field input:focus,
.cta-wrap-white .field textarea:focus { border-color: var(--accent); }
.cta-wrap-white .btn-outline-white {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  border-radius: 999px;
  padding: 13px 26px;
}
.cta-wrap-white .btn-outline-white:hover { background: #e03d12; border-color: #e03d12; }
@media (max-width: 860px) { .cta-wrap-white { padding: 72px 24px; } }

.footer { background: #fff; border-top: 1px solid #1A1A14; }
.footer-top { padding: 56px 48px 40px; }
.footer-brand svg { height: 22px; width: auto; color: var(--ink); }
.footer-brand p { font-weight: 400; color: var(--ink-soft); }
.footer-col h5 { color: var(--ink-soft); }
.footer-col a { color: var(--ink); }
.footer-col a:hover { color: var(--accent); }
.footer-wordmark { display: none; }
.footer-stamp { color: var(--ink-soft); border-top: 1px solid var(--ink-faint); padding-top: 24px; }
.footer-stamp a { color: var(--ink-soft); }
.footer-stamp a:hover { color: var(--accent); }

/* =============================================================
   HERO IMAGE — fond photo via background-image CSS, texte blanc
   ============================================================= */
.hero-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-img::before { content: none; }
.hero-img .hero-content { position: relative; z-index: 1; }
.hero-img h1 { color: #fff; }
.hero-img .hero-sub { color: rgba(255,255,255,0.9); }
.hero-img .btn-primary { background: #fff; color: var(--accent); border-color: #fff; }
.hero-img .btn-primary:hover { background: rgba(255,255,255,0.9); }
.hero-img .btn-text { color: rgba(255,255,255,0.8); }
.hero-img .btn-text:hover { color: #fff; opacity: 1; }

/* nav transparente — liens noirs par défaut */

/* =============================================================
   SERVICES — sticky layout
   ============================================================= */
.services-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ink-faint);
  min-height: 100vh;
  align-items: stretch;
}
.services-sticky-col {
  position: sticky;
  top: 62px;
  height: calc(100vh - 62px);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-self: stretch;
}
.services-sticky-col h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: var(--w-bold);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--ink);
}
.services-sticky-text {
  font-size: 16px;
  font-weight: var(--w-regular);
  line-height: 1.7;
  color: var(--ink);
  max-width: 38ch;
}
.services-sticky-col .surmesure {
  display: none;
}
.services-sticky-text {
  font-size: 16px;
  font-weight: var(--w-regular);
  line-height: 1.7;
  color: var(--ink);
  max-width: 38ch;
}

/* accordéon */
.services-accordion-col {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--ink-faint);
}
.accordion-list { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid var(--ink-faint); }
.accordion-item:first-child { border-top: 1px solid var(--ink-faint); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: opacity var(--t-quick) var(--ease);
}
.accordion-trigger:hover { opacity: .75; }
.accordion-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: var(--w-bold);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--accent);
  transition: color var(--t-quick) var(--ease);
}
.accordion-icon {
  font-size: 28px;
  font-weight: var(--w-light);
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease), color var(--t-quick) var(--ease);
  line-height: 1;
}
.accordion-item.open .accordion-icon { color: var(--accent); }
.accordion-body {
  padding: 0 0 28px 0;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.accordion-body:not([hidden]) {
  display: flex;
}
.accordion-body p {
  font-size: 16px;
  font-weight: var(--w-regular);
  line-height: 1.65;
  color: var(--ink);
  max-width: 44ch;
}
.accordion-body ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
  list-style: none;
}
.accordion-body ul li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}
.accordion-body ul li::before { content: '–'; position: absolute; left: 0; color: var(--ink-soft); }

@media (max-width: 860px) {
  .services-new { grid-template-columns: 1fr; min-height: unset; }
  .services-sticky-col {
    position: relative;
    top: 0;
    height: auto;
    padding: 48px 24px 32px;
    border-right: none;
    border-bottom: 1px solid var(--ink-faint);
  }
  .services-accordion-col { padding: 32px 24px 48px; border-left: none; }
}


/* surmesure en bas de l'accordéon */
.services-surmesure {
  margin-top: 40px;
  padding: 28px 0;
  font-size: 17px;
  font-weight: var(--w-medium);
  color: var(--accent);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.services-surmesure a {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 14px;
  font-weight: var(--w-regular);
  text-decoration: none;
  transition: all var(--t-quick) var(--ease);
}
.services-surmesure a:hover { background: var(--accent); color: #fff; }

/* =============================================================
   ANIMATIONS SCROLL — reveal
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================================
   MENU BURGER — mobile
   ============================================================= */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 63px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--ink-faint);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; color: var(--ink); }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
}

/* btn-service — fond blanc contour orange */
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--w-regular);
  text-transform: lowercase;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t-quick) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-service:hover { background: var(--accent); color: #fff; }

/* footer lisibilité */
.footer-brand p { color: var(--ink); font-weight: 400; opacity: 1; }
.footer-col h5 { color: var(--ink); font-weight: 700; }
.footer-col ul li a { color: var(--ink); opacity: 0.7; }
.footer-col ul li a:hover { opacity: 1; }
.footer-stamp { color: var(--ink); }
.footer-stamp a { color: var(--ink); }
