@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/barlow-400.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
}

:root {
  --black: #0b0b0d;
  --ink: #17171a;
  --white: #ffffff;
  --paper: #f4f4f2;
  --grey: #8a8a90;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(11, 11, 13, 0.12);
  --red: #e71706;
  --red-deep: #b81205;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-text: "Barlow", "Helvetica Neue", Arial, sans-serif;

  --header-h: 64px;
  --container: 1200px;
  --pad: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--red); color: var(--white); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
p { margin: 0 0 1em; }

a { color: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-dark { background: var(--black); color: var(--white); }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--red); color: var(--white); padding: 10px 18px;
}
.skip-link:focus { left: 0; }

.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;

  font-size: 0.95rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--red);

}
.section-dark .kicker { color: #ff4d3d; }

.section-intro { max-width: 56ch; color: var(--grey); }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 13px 30px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: transparent; color: var(--red); }
.section-dark .btn-primary:hover,
.hero .btn-primary:hover { color: var(--white); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); background: var(--white); }

.text-link {
  font-weight: 600;
  color: var(--red-deep);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--red); }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid var(--line);

  transition: box-shadow 0.3s, background-color 0.4s ease, border-color 0.4s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding-inline: var(--pad);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { cursor: pointer; }

.site-header:not(.scrolled) .brand { cursor: default; }
.brand img { width: 110px; height: auto; }

.nav-desktop { display: none; gap: clamp(20px, 3vw, 44px); }
.nav-desktop a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-desktop a:hover { color: #ff6c5e; border-color: var(--red); }

.header-contact { display: none; align-items: center; gap: 18px; }
.header-phone {
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  letter-spacing: 0.06em; text-decoration: none;
  transition: color 0.2s;
}
.header-social:hover { color: #ff6c5e; }
.header-social { display: inline-flex; }

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
}
.menu-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
body.menu-open .menu-toggle span { background: var(--ink); }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-mobile {
  position: fixed; inset: 0; z-index: 40;
  background: var(--paper); color: var(--ink);
  padding: calc(var(--header-h) + 24px) var(--pad) 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
body.menu-open .menu-mobile { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { background: var(--paper); border-color: var(--line-dark); }

body.menu-open .site-header.scrolled { box-shadow: none; }

.menu-catchline { font-size: 1.35rem; line-height: 1.4; max-width: 22ch; }
.menu-rule { border: 0; height: 3px; background: var(--red); margin: 28px 0; }
.menu-mobile nav { display: flex; flex-direction: column; gap: 18px; }
.menu-mobile nav a {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none;
}
.menu-mobile nav a:active, .menu-mobile nav a:hover { color: var(--red); }
.menu-contact { font-size: 0.95rem; }
.menu-contact p { margin: 0 0 6px; }
.menu-contact a { color: var(--red-deep); text-decoration: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 30% top;
  opacity: 0.55;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.75) 0%, rgba(11,11,13,0.25) 45%, rgba(11,11,13,0.82) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--container); width: 100%;
  margin: auto auto 0;
  padding: 15vh var(--pad) 96px;
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #d8d8dc; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-scroll {
  position: absolute; z-index: 1; left: 50%; bottom: 18px;
  transform: translateX(-50%);
  color: var(--red);
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

html.js .site-header { animation: heroFade .6s ease both 2.5s; }

html.js .hero-bg { opacity: 0; }
html.js .hero-content > * { opacity: 0; }
html.js .hero-scroll { opacity: 0; }

@keyframes heroImg  { from { opacity: 0; transform: scale(1.05); } to { opacity: .9; transform: none; } }
@keyframes heroText { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

html.js.hero-in .site-header            { animation: heroFade .7s ease both .1s; }
html.js.hero-in .hero-bg                { animation: heroImg 1.1s ease both; }
html.js.hero-in .hero-content .kicker   { animation: heroText .7s ease both .45s; }
html.js.hero-in .hero-content h1        { animation: heroText .7s ease both .6s; }
html.js.hero-in .hero-content .hero-sub { animation: heroText .7s ease both .75s; }
html.js.hero-in .hero-content .hero-cta { animation: heroText .7s ease both .9s; }
html.js.hero-in .hero-scroll            { animation: heroFade .6s ease both 1.15s; }

.stats { background: var(--red); color: var(--white); }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px var(--pad);
  padding-block: 34px;
}
.stat { display: flex; flex-direction: column; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 700; line-height: 1.1;
}
.stat-label { font-size: 0.9rem; opacity: 0.92; }

.split { display: grid; gap: 34px; align-items: center; }
.split-media { margin: 0; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-text > :last-child { margin-bottom: 0; }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 34px;
}
.card {
  position: relative; display: block; text-decoration: none;
  overflow: hidden;
  border: 1px solid var(--line);
}
.card figure { margin: 0; overflow: hidden; }
.card img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s;
  opacity: 0.9;
}
.card:hover img { transform: scale(1.07); opacity: 1; }
.card-label {
  position: absolute; left: 0; bottom: 0;
  background: var(--red); color: var(--white);
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px 18px;
}

.detail-row { padding-block: clamp(30px, 5vw, 56px); }
.detail-row + .detail-row { border-top: 1px solid var(--line-dark); }

.media-illu svg { width: 100%; height: auto; display: block; }
.media-num { display: none; }
body.media-numbers .media-illu { display: none; }

body.media-numbers .media-num {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
}
body.media-numbers .detail-row .split-text .kicker { display: none; }
.big-num { flex: 0 0 auto; width: clamp(110px, 28vw, 165px); }
.media-kicker { margin: 0; line-height: 1; margin-bottom: 5px;}
.big-num text {
  font-family: var(--font-text);
  font-weight: 400;
  font-weight: 800;
  font-size: 300px;
  font-size: 150px;
  fill: var(--white);

  fill: var(--red);
  stroke: var(--ink);
  stroke: var(--red);
  stroke: transparent;
  stroke-width: 4;
  stroke-width: 5;
  paint-order: stroke;
}
.big-num text::selection {
  background: transparent;
}
.specs { list-style: none; margin: 18px 0 0; padding: 18px 20px; background: var(--paper); border-left: 4px solid var(--red); }
.specs li { padding-block: 3px; }

.realisations .container { margin-bottom: 8px; }
.carousel { position: relative; }
.carousel-track {
  list-style: none; margin: 0; padding: 24px var(--pad);
  display: flex; gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
  -webkit-overflow-scrolling: touch;
}
.carousel-track li { flex: 0 0 auto; scroll-snap-align: center; }
.carousel-track figure { margin: 0; cursor: zoom-in; }
.carousel-track img {
  height: clamp(240px, 40vw, 380px); width: auto;
  filter: grayscale(1);
  transition: filter 0.4s, transform 0.4s;
}
.carousel-track figure:hover img { filter: grayscale(0); transform: scale(1.02); }
@media (hover: none) { .carousel-track img { filter: grayscale(0); } }
.carousel-track figcaption {
  font-size: 0.85rem; color: var(--grey);
  padding-top: 8px;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 46px; height: 46px;
  display: none; align-items: center; justify-content: center;
  background: var(--red); color: var(--white);
  border: 0; cursor: pointer;
  transition: background 0.25s;
}
.carousel-btn:hover { background: #ff3423; }
.carousel-prev { left: calc(var(--pad) - 12px); }
.carousel-next { right: calc(var(--pad) - 12px); }

.lightbox {
  border: 0; padding: 0;
  background: transparent;
  max-width: min(92vw, 1100px);
  -webkit-tap-highlight-color: transparent;
}
.lightbox::backdrop { background: rgba(11, 11, 13, 0.88); }

.lightbox img {
  display: block;
  aspect-ratio: 3 / 4;
  width: min(92vw, 1100px, 61.5vh); height: auto;
  object-fit: cover; object-position: center;
  margin: 0 auto;
  cursor: pointer;
  user-select: none; -webkit-user-drag: none;
}

.lightbox:focus, .lightbox:focus-visible,
.lightbox img:focus, .lightbox img:focus-visible,
.lightbox-close:focus, .lightbox-close:focus-visible { outline: none; }
.lightbox-close {
  position: absolute; top: 10px; right: 10px;
  display: inline-flex; padding: 0;
  background: none; border: 0; cursor: pointer;
  color: var(--red); line-height: 0;
}

.lightbox-close:focus-visible { color: #ff4534; }

body.lightbox-open { overflow: hidden; }

.cta { background: var(--paper); text-align: center; }
.cta .container { max-width: 780px; }
.cta p { margin-inline: auto; margin-bottom: 28px; }

.contact-grid { display: grid; gap: 44px; margin-top: 30px; }
.contact-list { list-style: none; margin: 24px 0 0; padding: 0; }
.contact-list li {
  padding: 12px 0 12px 18px;
  border-left: 3px solid var(--red);
  margin-bottom: 14px;
}
.contact-list span {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.85rem; color: var(--grey);
}
.contact-list a { color: var(--white); text-decoration: none; border-bottom: 1px solid transparent; }
.contact-list a:hover { color: #ff6c5e; border-color: var(--red); }

.contact-form { background: var(--white); color: var(--ink); padding: clamp(22px, 4vw, 40px); }
.contact-form h3 { margin-bottom: 20px; }
.contact-form label {
  display: block; margin-bottom: 16px;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem;
}

.label-opt {
  text-transform: none; letter-spacing: 0;
  font-weight: 400; font-size: 0.78rem; color: var(--grey);
}
.contact-form input, .contact-form textarea {
  display: block; width: 100%;
  margin-top: 6px; padding: 11px 12px;
  font: 400 1rem var(--font-text);
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: var(--paper);
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--ink);
}
.contact-form textarea { resize: vertical; }
.form-row { display: grid; gap: 0 16px; }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-rgpd { font-size: 0.8rem; color: var(--grey); }
.form-rgpd.err { color: var(--red-deep); font-weight: 600; }

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--paper) inset;
  -webkit-text-fill-color: var(--ink);
}

.contact-form input.invalid, .contact-form textarea.invalid { border-color: var(--red); }

.contact-form input.valid, .contact-form textarea.valid { background: #e5f7f1; }
.contact-form input.valid:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px #e5f7f1 inset; }

.form-foot { display: flex; align-items: center; gap: 16px; }
.form-status { flex: 1; margin: 0; font-weight: 600; line-height: 1.35; }
.form-status.ok { color: #0a7a3d; }
.form-status.err { color: var(--red-deep); }

.contact-form .btn-primary:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--red);
}

.btn-sent, .btn-sent:hover,
.contact-form .btn-sent:hover { background: #01af77; border-color: #01af77; color: var(--white); cursor: default; }

.site-footer { background: var(--black); color: #c9c9ce; }
.footer-grid {
  display: grid; gap: 34px;
  grid-template-columns: 1fr;
  padding-block: clamp(48px, 7vw, 80px);
}
.footer-col h4 {
  color: var(--white); font-size: 1.05rem;
  letter-spacing: 0.1em; margin-bottom: 14px;
}
.footer-legal-title { margin-top: 22px; }
.footer-col a {
  display: block; text-decoration: none;
  padding-block: 3px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #ff6c5e; }
.footer-col p { font-size: 0.95rem; }
.footer-brand img { margin-bottom: 14px; }
.copyright {
  text-align: center; font-size: 0.8rem;
  color: var(--grey);
  background: #08080a;
  padding: 12px var(--pad);
}

html.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
  .card img, .carousel-track img { transition: none; }

  html.js .hero-bg,
  html.js.hero-in .hero-bg { opacity: .55; transform: none; animation: none; }
  html.js .hero-content > *,
  html.js.hero-in .hero-content > * { opacity: 1; transform: none; animation: none; }
  html.js .hero-scroll,
  html.js.hero-in .hero-scroll { opacity: 1; animation: none; }
  html.js .site-header,
  html.js.hero-in .site-header { opacity: 1; animation: none; }
}

@media (max-width: 559px) {
  .hero .kicker-place { display: none; }

  .hero-content {
    flex: 1; margin: 0 auto;
    display: flex; flex-direction: column;
    padding-block: 24px 96px;
  }
  .hero-content .kicker { margin-top: auto; }

  .hero-cta { margin-top: auto; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: 140svh; }
  .hero-content { padding-block: 10vh 72px; }

  .stat-value { font-size: clamp(1rem, 2.4vw, 2.2rem); white-space: nowrap; }

  .stats-grid { padding-inline: 3vw; column-gap: 2vw; }
  .stat-label { font-size: clamp(0.65rem, 1.5vw, 0.9rem); white-space: nowrap; }
  .stat { text-align: center; }
  .menu-mobile nav a { font-size: 1.4rem; }
  .menu-mobile nav { gap: 10px; }
  .menu-rule { margin: 16px 0; }
  .menu-catchline { font-size: 1.05rem; }
}

@media (min-width: 560px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  :root { --header-h: 72px; }

  a[href^="tel:"] { pointer-events: none; cursor: default; }
  .brand img {

  }
  .menu-toggle, .menu-mobile { display: none; }
  .nav-desktop { display: flex; }
  .header-contact { display: flex; }
  .carousel-btn { display: inline-flex; }

  .split { grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
  .split-reverse .split-media { order: 2; }

  body.media-numbers .media-num { justify-content: center; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
