/* =====================================================================
   IMPERIAL M.C — Redesigned static site
   Design system & global styles
   Brand red: #C81030
   ===================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* brand */
  --red: #c81030;
  --red-600: #b00d29;
  --red-700: #94091f;
  --red-soft: #fbe9ec;

  /* ink / neutrals */
  --ink: #0e1218;
  --ink-2: #161b23;
  --ink-3: #222a35;
  --charcoal: #2b323c;
  --slate: #56606d;
  --muted: #7a8593;
  --line: #e7e6e2;
  --line-2: #edece8;

  /* surfaces */
  --bg: #ffffff;
  --bg-warm: #f7f4ef;
  --bg-warm-2: #f1ede6;
  --white: #ffffff;

  /* type */
  --font-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* layout */
  --container: 1200px;
  --container-wide: 1360px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --btn-radius: 4px;

  /* effects */
  --shadow-sm: 0 2px 8px rgba(14, 18, 24, 0.06);
  --shadow: 0 14px 40px rgba(14, 18, 24, 0.10);
  --shadow-lg: 0 30px 70px rgba(14, 18, 24, 0.16);
  --shadow-red: 0 16px 34px rgba(200, 16, 48, 0.28);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}

::selection { background: var(--red); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container-wide { max-width: var(--container-wide); }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section.warm { background: var(--bg-warm); }
.section.ink { background: var(--ink); color: #c9d0da; }
.section.ink h1, .section.ink h2, .section.ink h3, .section.ink h4 { color: #fff; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.center { justify-content: center; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-top: 16px;
}
.section-head p { color: var(--slate); font-size: 1.06rem; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: var(--btn-radius); border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-red); }
.btn.primary { background: var(--red); color: #fff; }
.btn.primary:hover { background: var(--red-600); }
.btn.dark { background: var(--ink); color: #fff; }
.btn.dark:hover { background: var(--ink-2); box-shadow: var(--shadow); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn.ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn.on-dark { background: #fff; color: var(--ink); }
.btn.on-dark:hover { background: var(--red); color: #fff; }
.btn.outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); box-shadow: none; }
.btn.outline-light:hover { background: #fff; color: var(--ink); }
.btn.lg { padding: 17px 38px; font-size: 16px; }
.btn.sm { padding: 11px 22px; font-size: 14px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--red);
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =====================================================================
   HEADER
   ===================================================================== */
.topbar {
  background: var(--ink); color: #aeb7c2;
  font-size: 13.5px;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 16px; }
.topbar .hours { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .hours span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .hours svg { width: 15px; height: 15px; color: var(--red); }
.topbar .socials { display: flex; align-items: center; gap: 6px; }
.topbar .socials a {
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 7px;
  color: #aeb7c2; transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.topbar .socials a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.topbar .socials svg { width: 15px; height: 15px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand img { height: 40px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li > a {
  display: block; padding: 10px 12px; border-radius: 6px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink);
  position: relative;
}
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--red); }
.nav-menu > li > a:hover::after, .nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-tel { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 14.5px; }
.nav-tel svg { width: 20px; height: 20px; color: var(--red); }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; place-items: center;
}
.nav-toggle svg { width: 24px; height: 24px; color: var(--ink); }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); background: #fff; z-index: 200;
  transform: translateX(100%); transition: transform .35s var(--ease);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; padding: 22px;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(14,18,24,.5); z-index: 199; opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 10px; display: grid; place-items: center; }
.drawer-close svg { width: 22px; height: 22px; }
.mobile-drawer nav a {
  display: block; padding: 14px 6px; font-family: var(--font-display); font-weight: 600; font-size: 16px;
  color: var(--ink); border-bottom: 1px solid var(--line-2);
}
.mobile-drawer nav a:hover { color: var(--red); }
.mobile-drawer .btn { margin-top: 20px; width: 100%; }
.mobile-drawer .drawer-contact { margin-top: 22px; font-size: 14px; color: var(--slate); }
.mobile-drawer .drawer-contact a { color: var(--ink); font-weight: 600; }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transform: scale(1.04); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,14,19,.94) 0%, rgba(11,14,19,.78) 42%, rgba(11,14,19,.35) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 118px 0 128px; max-width: 680px; }
.hero .eyebrow { color: #ff8f9f; }
.hero .eyebrow::before { background: var(--red); }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 800; margin: 20px 0 8px;
  line-height: 1.02;
}
.hero .lede { font-size: 1.12rem; color: #d5dae1; max-width: 560px; margin-top: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-offer {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 30px;
  background: rgba(200,16,48,.16); border: 1px solid rgba(255,255,255,.16);
  padding: 10px 18px 10px 12px; border-radius: var(--btn-radius); font-size: 14.5px; color: #fff;
  backdrop-filter: blur(4px);
}
.hero-offer .pct { background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700; padding: 4px 12px; border-radius: var(--btn-radius); font-size: 14px; }
.hero-cats {
  position: relative; z-index: 3; display: flex; flex-wrap: wrap; gap: 10px;
  padding: 22px 0 0;
}
.hero-cats a {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: .02em;
  color: #fff; border: 1px solid rgba(255,255,255,.22); padding: 9px 16px; border-radius: var(--btn-radius);
  transition: all .25s var(--ease);
}
.hero-cats a:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* stat strip under hero */
.hero-stats { background: var(--red); }
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stats .stat { padding: 26px 22px; color: #fff; border-right: 1px solid rgba(255,255,255,.18); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat b { font-family: var(--font-display); font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.hero-stats .stat span { font-size: 14px; opacity: .92; }

/* =====================================================================
   PAGE HERO (interior pages)
   ===================================================================== */
.page-hero {
  position: relative; color: #fff; background: var(--ink); overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,14,19,.55), rgba(11,14,19,.86)); }
.page-hero-inner { position: relative; z-index: 2; padding: 92px 0 84px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.8vw, 3.6rem); margin: 14px 0 0; }
.page-hero p { color: #d5dae1; max-width: 640px; margin-top: 18px; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; font-size: 13.5px; color: #aab2bd; font-family: var(--font-display); font-weight: 500; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: #ff8f9f; }

/* =====================================================================
   CARDS & GRIDS
   ===================================================================== */
.grid { display: grid; gap: 26px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Feature / advantage cards */
.feature {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature .ficon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red); margin-bottom: 20px;
}
.feature .ficon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feature p { color: var(--slate); font-size: .98rem; }

/* Service showcase card (image) */
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink);
  min-height: 400px; display: flex; align-items: flex-end; isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .6s var(--ease);
}
.service-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,14,19,0) 30%, rgba(11,14,19,.55) 62%, rgba(11,14,19,.94) 100%);
}
.service-card:hover img { transform: scale(1.07); }
.service-card .sc-body { padding: 30px 28px; color: #fff; width: 100%; }
.service-card .sc-num { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #ff8f9f; letter-spacing: .1em; }
.service-card h3 { color: #fff; font-size: 1.5rem; margin: 8px 0 10px; }
.service-card p { color: #d0d6de; font-size: .96rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .4s var(--ease), margin .4s var(--ease); }
.service-card .sc-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: #fff; }
.service-card .sc-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.service-card:hover p { max-height: 120px; opacity: 1; margin-bottom: 4px; }
.service-card:hover .sc-link { color: #ff8f9f; }
.service-card:hover .sc-link svg { transform: translateX(4px); }

/* Product cards (fenetre) */
.product-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-warm-2); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-price { position: absolute; top: 14px; right: 14px; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: var(--btn-radius); }
.product-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.3rem; margin-bottom: 14px; }
.spec-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.spec-list li { font-size: 12.5px; font-weight: 600; font-family: var(--font-display); color: var(--slate); background: var(--bg-warm); border: 1px solid var(--line-2); border-radius: 8px; padding: 5px 10px; }
.product-body p { color: var(--slate); font-size: .95rem; }

/* Split / alternating content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .6s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split-body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 20px; }
.split-body p { color: var(--slate); margin-bottom: 16px; }
.split-body .btn { margin-top: 12px; }
.check-list { margin: 20px 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--charcoal); font-size: 1rem; }
.check-list svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* Sub-service list rows (service pages) */
.subservice {
  display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center;
  padding: 40px 0; border-bottom: 1px solid var(--line-2);
}
.subservice:last-child { border-bottom: none; }
.subservice.reverse .ss-media { order: 2; }
.ss-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.ss-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.subservice:hover .ss-media img { transform: scale(1.05); }
.ss-body h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--ink); }
.ss-body .ss-tag { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; color: var(--red); text-transform: uppercase; }
.ss-body p { color: var(--slate); margin-top: 8px; }

/* =====================================================================
   STATS / NUMBERS band
   ===================================================================== */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.numbers .num b { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--ink); display: block; }
.numbers .num span { color: var(--slate); font-weight: 500; }
.numbers .num .u { color: var(--red); }

/* =====================================================================
   BADGES / PARTNERS
   ===================================================================== */
.badge-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.badge-strip img { height: 62px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: filter .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease); }
.badge-strip img:hover { filter: grayscale(0); opacity: 1; transform: translateY(-3px); }
.partner-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.partner-tags li { font-family: var(--font-display); font-weight: 700; letter-spacing: .04em; color: var(--ink); border: 1.5px solid var(--line); border-radius: var(--btn-radius); padding: 9px 20px; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonial {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 34px 30px;
  position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial .quote { font-family: var(--font-display); font-size: 3.4rem; line-height: .6; color: var(--red-soft); position: absolute; top: 26px; right: 26px; }
.stars { display: flex; gap: 3px; color: #f5a623; margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; }
.testimonial p { color: var(--charcoal); font-size: 1.04rem; position: relative; z-index: 1; }
.testimonial .who { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.testimonial .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.testimonial .who b { font-family: var(--font-display); color: var(--ink); }
.testimonial .who span { font-size: 13px; color: var(--muted); display: block; }

/* =====================================================================
   BLOG cards
   ===================================================================== */
.post-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-media { aspect-ratio: 16/10; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.06); }
.post-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 14px; font-size: 13px; color: var(--muted); font-family: var(--font-display); font-weight: 500; margin-bottom: 12px; }
.post-meta .cat { color: var(--red); }
.post-body h3 { font-size: 1.28rem; line-height: 1.25; margin-bottom: 14px; }
.post-body h3 a:hover { color: var(--red); }
.post-body .link-arrow { margin-top: auto; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band { position: relative; background: var(--red); color: #fff; border-radius: var(--radius-lg); overflow: hidden; padding: 58px 56px; }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-band::after { content: ""; position: absolute; left: -80px; bottom: -100px; width: 280px; height: 280px; border-radius: 50%; background: rgba(0,0,0,.08); }
.cta-band .cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); max-width: 640px; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 8px; }

/* =====================================================================
   FORMS
   ===================================================================== */
.quote-form { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--line-2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--bg-warm);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px var(--red-soft);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success { display: none; background: #e9f8ee; border: 1px solid #b6e6c5; color: #1c7a3d; padding: 14px 18px; border-radius: 10px; font-size: 14.5px; margin-bottom: 18px; }
.form-success.show { display: block; }

/* contact info cards */
.contact-info { display: grid; gap: 18px; }
.info-card { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 24px; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.info-card .ic { width: 52px; height: 52px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--slate); font-size: .96rem; }
.info-card a:hover { color: var(--red); }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery-grid { columns: 4; column-gap: 16px; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; background: var(--bg-warm-2); }
.gallery-grid .g-item img { width: 100%; transition: transform .5s var(--ease); }
.gallery-grid .g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,14,19,0) 50%, rgba(200,16,48,.5) 100%); opacity: 0; transition: opacity .3s var(--ease); }
.gallery-grid .g-item .g-zoom { position: absolute; inset: 0; margin: auto; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: opacity .3s var(--ease), transform .3s var(--ease); z-index: 2; }
.gallery-grid .g-item .g-zoom svg { width: 22px; height: 22px; color: var(--ink); }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
.gallery-grid .g-item:hover::after { opacity: 1; }
.gallery-grid .g-item:hover .g-zoom { opacity: 1; transform: scale(1); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,10,14,.94); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 52px; height: 52px; border-radius: 10px; display: grid; place-items: center; transition: background .2s var(--ease); }
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--red); border-color: var(--red); }
.lightbox .lb-close { top: 26px; right: 26px; }
.lightbox .lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 24px; height: 24px; }

/* =====================================================================
   ARTICLE (blog post)
   ===================================================================== */
.article { max-width: 820px; margin-inline: auto; }
.article-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 40px; }
.article-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-body { font-size: 1.08rem; color: var(--charcoal); }
.article-body h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.3rem; margin: 32px 0 14px; }
.article-body p { margin-bottom: 20px; }
.article-body ul { margin: 0 0 22px; display: grid; gap: 12px; }
.article-body ul li { position: relative; padding-left: 30px; color: var(--charcoal); }
.article-body ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 16px; height: 16px; border-radius: 4px; background: var(--red-soft); border: 2px solid var(--red); }
.article-body strong { color: var(--ink); }
.article-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line-2); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.article-tags .tag { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--red); background: var(--red-soft); padding: 6px 14px; border-radius: var(--btn-radius); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: #9aa4b1; padding-top: 76px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.4fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand img { height: 40px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .96rem; color: #9aa4b1; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 9px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cdd4dd; transition: all .25s var(--ease); }
.footer-socials a:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; font-family: var(--font-display); }
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul a { color: #9aa4b1; font-size: .96rem; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .96rem; align-items: flex-start; }
.footer-contact svg { width: 19px; height: 19px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; font-size: 13.5px; color: #7c8592; text-align: center; }
.footer-bottom a { color: #9aa4b1; }
.footer-bottom a:hover { color: var(--red); }

/* =====================================================================
   FLOATING BUTTONS
   ===================================================================== */
.floaties { position: fixed; left: 20px; bottom: 22px; z-index: 120; display: flex; flex-direction: column; gap: 12px; }
.floaty { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); transition: transform .25s var(--ease); position: relative; }
.floaty:hover { transform: scale(1.08); }
.floaty svg { width: 28px; height: 28px; }
.floaty.wa { background: #25d366; }
.floaty.devis { background: var(--red); }
.floaty .tip { position: absolute; left: 68px; top: 50%; transform: translateY(-50%); background: var(--ink); color: #fff; font-size: 13px; font-family: var(--font-display); font-weight: 600; padding: 7px 12px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s var(--ease); }
.floaty:hover .tip { opacity: 1; }

/* =====================================================================
   OFFER POPUP
   ===================================================================== */
.offer-modal { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(11,14,19,.72); }
.offer-modal.open { display: flex; }
.offer-card { position: relative; max-width: 560px; width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ink); color: #fff; }
.offer-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.offer-card .offer-content { position: relative; z-index: 2; padding: 56px 44px; text-align: center; }
.offer-card h2 { color: #fff; font-size: 2rem; line-height: 1.1; }
.offer-card .off-badge { display: inline-block; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; padding: 7px 16px; border-radius: var(--btn-radius); margin-bottom: 18px; }
.offer-card .btn { margin-top: 26px; }
.offer-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 40px; height: 40px; border-radius: 9px; background: rgba(255,255,255,.16); border: none; color: #fff; display: grid; place-items: center; }
.offer-close:hover { background: var(--red); }
.offer-close svg { width: 22px; height: 22px; }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .gallery-grid { columns: 3; }
  .split { gap: 40px; }
}
@media (max-width: 940px) {
  .nav-menu, .nav-tel { display: none; }
  .nav-toggle { display: grid; }
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat:nth-child(2) { border-right: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .subservice { grid-template-columns: 1fr; gap: 22px; }
  .subservice.reverse .ss-media { order: 0; }
  .subservice .ss-media { max-width: 460px; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; column-gap: 12px; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .container { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 28px; }
  .quote-form { padding: 28px 22px; }
  .topbar .hours span:nth-child(2) { display: none; }
  .cta-band .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  .gallery-grid { columns: 1; }
  .hero-stats .container { grid-template-columns: 1fr; }
  .hero-stats .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
}

/* =====================================================================
   HERO — showcase (house photo bg + window profile + certifications)
   ===================================================================== */
.hero-showcase { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding-bottom: 48px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero-bg::after { content:""; position:absolute; inset:0;
  background: linear-gradient(115deg, rgba(11,14,19,.95) 0%, rgba(11,14,19,.82) 42%, rgba(11,14,19,.48) 100%); }
.hero-showcase .container { position: relative; z-index: 1; }
.hero-showcase-grid { display:grid; grid-template-columns: 0.86fr 1.14fr; gap: 54px; align-items:center; padding: 60px 0 34px; }
.hero-window { position: relative; display:flex; justify-content:center; }
.hero-window .win-card { position: relative; background:#fff; border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg); }
.hero-window .win-card img { max-height: 380px; width:auto; max-width:100%; display:block; margin:auto; }
.hero-window .fig-badge { position:absolute; z-index:3; bottom: -18px; left: -18px; background:#fff; border:1px solid var(--line-2);
  box-shadow: var(--shadow); border-radius:12px; padding:12px 16px; display:flex; gap:12px; align-items:center; }
.hero-window .fig-badge .fb-ic { width:40px; height:40px; border-radius:9px; background:var(--red-soft); color:var(--red); display:grid; place-items:center; }
.hero-window .fig-badge .fb-ic svg { width:22px; height:22px; }
.hero-window .fig-badge b { font-family:var(--font-display); color:var(--ink); font-size:15px; display:block; line-height:1.1; }
.hero-window .fig-badge span { font-size:12.5px; color:var(--muted); }
.hero-showcase .eyebrow { color:#ff8f9f; }
.hero-showcase .eyebrow::before { background: var(--red); }
.hero-showcase h1 { color:#fff; font-size: clamp(2.5rem, 5.2vw, 4.2rem); font-weight:800; margin: 16px 0 6px; line-height:1.02; }
.hero-showcase .h1-sub { display:block; font-size: clamp(1.05rem,2vw,1.45rem); font-weight:600; color:#ff8f9f; font-family:var(--font-display); margin-bottom: 4px; letter-spacing:-.01em; }
.hero-showcase .lede { font-size:1.08rem; color:#d5dae1; max-width: 560px; margin-top: 16px; }
.hero-showcase .hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top: 30px; }
.hero-showcase .hero-offer { display:inline-flex; align-items:center; gap:12px; margin-top: 26px;
  background: rgba(200,16,48,.20); border:1px solid rgba(255,255,255,.16); color:#fff;
  padding:10px 18px 10px 12px; border-radius: var(--btn-radius); font-size:14.5px; }
.hero-showcase .hero-offer .pct { background: var(--red); color:#fff; font-family:var(--font-display); font-weight:700; padding:4px 12px; border-radius:3px; font-size:14px; }

/* certifications bar (white card floating on the dark hero) */
.cert-bar { position: relative; z-index:1; display:flex; align-items:center; justify-content:center; gap: 40px; flex-wrap:wrap;
  background:#fff; border:1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 34px; }
.cert-bar .cert-label { font-family:var(--font-display); font-weight:600; font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); }
.cert-bar img { height: 58px; width:auto; object-fit:contain; transition: transform .3s var(--ease); }
.cert-bar img:hover { transform: translateY(-3px); }

/* brand logo slider (marquee) */
.logo-marquee { border-block:1px solid var(--line-2); background:#fff; padding: 24px 0; overflow:hidden; }
.logo-viewport { overflow:hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logo-track { display:flex; align-items:center; gap:60px; width:max-content; animation: mq 34s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.brand-logo { display:flex; align-items:center; height:46px; flex-shrink:0; }
.brand-logo img { height:100%; width:auto; max-width:200px; object-fit:contain;
  filter: grayscale(1); opacity:.6; transition: filter .3s var(--ease), opacity .3s var(--ease); }
.brand-logo:hover img { filter:none; opacity:1; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* =====================================================================
   FORM — RGPD consent
   ===================================================================== */
.consent { display:flex; gap:11px; align-items:flex-start; margin: 16px 0 2px; font-size:13.5px; color: var(--slate); line-height:1.5; }
.consent input { margin-top:2px; width:18px; height:18px; accent-color: var(--red); flex-shrink:0; }
.consent a { color: var(--red); font-weight:600; text-decoration: underline; }

/* =====================================================================
   COOKIE BANNER (GDPR)
   ===================================================================== */
.cookie-banner { position: fixed; right: 20px; bottom: 20px; left: auto; max-width: 460px; z-index: 300;
  background: var(--ink); color:#c9d0da; border:1px solid rgba(255,255,255,.08); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 22px 24px; display:none; }
.cookie-banner.show { display:block; }
.cookie-banner h4 { color:#fff; font-size:1.05rem; margin-bottom:8px; display:flex; align-items:center; gap:9px; }
.cookie-banner h4 svg { width:22px; height:22px; flex-shrink:0; color:#ff8f9f; }
.cookie-banner p { font-size:13.6px; line-height:1.6; }
.cookie-banner p a { color:#fff; text-decoration:underline; }
.cookie-banner .cookie-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.cookie-banner .btn { padding:11px 20px; font-size:14px; }

/* =====================================================================
   LEGAL pages
   ===================================================================== */
.legal-body { max-width: 860px; margin-inline:auto; }
.legal-body h2 { font-size:1.5rem; margin: 38px 0 14px; padding-top: 8px; }
.legal-body h3 { font-size:1.16rem; margin: 26px 0 10px; }
.legal-body p { color: var(--slate); margin-bottom: 16px; }
.legal-body ul { margin: 0 0 20px; display:grid; gap:10px; }
.legal-body ul li { position:relative; padding-left: 26px; color: var(--slate); }
.legal-body ul li::before { content:""; position:absolute; left:0; top:9px; width:12px; height:12px; border-radius:3px; background:var(--red-soft); border:2px solid var(--red); }
.legal-body strong { color: var(--ink); }
.legal-body .placeholder { background: #fff6d6; border:1px dashed #e0b400; color:#8a6d00; padding:2px 7px; border-radius:4px; font-size:.92em; }
.legal-body a { color: var(--red); text-decoration: underline; }
.legal-card { background:#fff; border:1px solid var(--line-2); border-radius: var(--radius); padding: 30px 32px; margin-bottom: 26px; }
.legal-updated { color: var(--muted); font-size:14px; margin-bottom: 30px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; }
.footer-legal .container { display:flex; gap: 8px 22px; flex-wrap:wrap; align-items:center; justify-content:center; font-size:13.5px; }
.footer-legal a { color:#9aa4b1; }
.footer-legal a:hover { color:#fff; }
.footer-legal .sep { color: rgba(255,255,255,.2); }
#cookie-settings-link { background:none; border:none; color:#9aa4b1; font: inherit; cursor:pointer; padding:0; }
#cookie-settings-link:hover { color:#fff; }

/* =====================================================================
   RESPONSIVE — new components
   ===================================================================== */
@media (max-width: 940px) {
  .hero-showcase-grid { grid-template-columns: 1fr; gap: 40px; padding: 44px 0 26px; text-align: center; }
  .hero-showcase .eyebrow, .hero-showcase .hero-actions { justify-content: center; }
  .hero-showcase .lede { margin-inline: auto; }
  .hero-window { order: -1; }
  .hero-window .win-card { display: inline-block; }
  .hero-window .win-card img { max-height: 300px; }
  .cert-bar { gap: 24px 34px; }
}
@media (max-width: 680px) {
  .hero-window .win-card { padding: 16px; }
  .hero-window .win-card img { max-height: 250px; }
  .hero-window .fig-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
  .cert-bar { gap: 16px 26px; padding: 18px 18px; }
  .cert-bar img { height: 46px; }
  .cert-bar .cert-label { flex-basis: 100%; text-align:center; }
  .brand-logo span { font-size: 1.2rem; }
  .cookie-banner { right: 12px; left: 12px; bottom: 12px; max-width: none; padding: 18px 18px; }
}

/* Collapse the horizontal nav to the drawer earlier — the full menu + phone +
   CTA + logo only fit comfortably on wide screens. */
@media (max-width: 1180px) {
  .nav-menu, .nav-tel { display: none; }
  .nav-toggle { display: grid; }
}
