:root {
  --encre: #0a0a0a;
  --ardoise: #1a1a1a;
  --zinc: #5c5c5c;
  --brouillard: #9a9a9a;
  --beton: #ececec;
  --pierre: #e8e8e8;
  --fiche: #ffffff;
  --orange: #ff6a00;
  --orange-fonce: #d45500;
  --ok: #1f6b3a;
  --ok-fond: #e3f3e8;
  --erreur: #8a3535;
  --erreur-fond: #f3e0e0;
  --display: "Syne", "Arial Narrow", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --measure: 76rem;
  --radius: 3px;
  --ombre-fiche: 0 22px 60px rgba(0, 0, 0, 0.32);
}

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

html { scroll-behavior: smooth; }

html,
body {
  margin: 0;
  padding: 0;
  background: var(--encre);
  color: var(--encre);
  color-scheme: light;
}

body {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--orange-fonce); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0; }
p + p { margin-top: 0.9em; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(var(--measure), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-fonce);
}
.kicker a { text-decoration: none; }

.skip { position: absolute; left: -999px; top: 0; }
.skip:focus {
  left: var(--gutter);
  top: 0.6rem;
  z-index: 50;
  background: var(--fiche);
  padding: 0.4rem 0.7rem;
}

.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;
}

.tape {
  height: 1.15rem;
  background: repeating-linear-gradient(-45deg, #0a0a0a 0 13px, #ff6a00 13px 26px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.tape-wide {
  height: 1.55rem;
  background: repeating-linear-gradient(-45deg, #0a0a0a 0 16px, #ff6a00 16px 32px);
}
.tape-tilt {
  height: 1.35rem;
  transform: skewY(-0.6deg);
  transform-origin: left center;
}

.site-hero {
  background: #111;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: min(32vh, 18rem);
}
.site-hero.tall { min-height: min(52vh, 28rem); }
.site-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  max-width: none;
}
@media (min-width: 960px) {
  .site-hero { min-height: min(34vh, 20rem); }
  .site-hero.tall {
    min-height: min(78vh, 52rem);
    max-height: none;
  }
  .site-hero-photo,
  .site-hero.tall .site-hero-photo {
    object-fit: cover;
    object-position: center 30%;
  }
}

.hdr-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 1px 0 #ececec;
}
.hdr-inner {
  position: relative;
  width: min(var(--measure), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.hdr-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  text-decoration: none;
  color: #0a0a0a;
}
.hdr-brand:hover { color: #0a0a0a; }
.hdr-mark { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }
.hdr-mark img { width: 3.1rem; height: 3.1rem; }
.hdr-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1rem, 4.4vw, 1.95rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
  color: #0a0a0a;
  white-space: nowrap;
  transform: skewX(-12deg);
  transform-origin: left center;
}
.hdr-tld {
  background: linear-gradient(180deg, #ff8a33 0%, #ff6a00 48%, #e85f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hdr-toggle {
  display: none;
  flex-shrink: 0;
  width: 2.7rem;
  height: 2.7rem;
  margin: 0;
  padding: 0.58rem 0.52rem;
  border: 2px solid #ff6a00;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.hdr-toggle span {
  display: block;
  height: 3px;
  background: #ff6a00;
  border-radius: 1px;
}
.hdr-menu { display: none; }
.hdr-nav { display: flex; align-items: center; gap: 1.35rem; }
.hdr-nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a1a;
}
.hdr-nav a:hover { color: #ff6a00; }
.hdr-cta {
  display: inline-flex;
  align-items: center;
  background: #ff6a00;
  color: #0a0a0a !important;
  text-decoration: none;
  padding: 0.55rem 0.85rem;
}
.hdr-cta:hover { background: #ff8533; color: #0a0a0a !important; }
@media (max-width: 760px) {
  .hdr-inner { min-height: 4.6rem; }
  .hdr-mark img { width: 2.6rem; height: 2.6rem; }
  .hdr-toggle { display: flex; }
  .hdr-menu {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .hdr-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 41;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 0.9rem var(--gutter) 1.15rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
  .hdr-nav a { color: #0a0a0a; font-size: 0.82rem; }
  .hdr-menu:checked ~ .hdr-nav { display: flex; }
  .hdr-menu:checked + .hdr-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hdr-menu:checked + .hdr-toggle span:nth-child(2) { opacity: 0; }
  .hdr-menu:checked + .hdr-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.ftr-foot { margin-top: 0; padding: 0 0 2.2rem; background: #0a0a0a; color: #d4d4d4; }
.ftr-grid {
  width: min(var(--measure), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  padding-top: 3rem;
}
.ftr-brand { display: inline-flex; text-decoration: none; line-height: 0; }
.ftr-brand img { width: 17.5rem; height: auto; }
.ftr-note { margin-top: 0.8rem; max-width: 34rem; color: #a3a3a3; font-size: 0.98rem; }
.ftr-cols { display: grid; gap: 1.4rem; }
.ftr-cols h2 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #ff6a00;
}
.ftr-cols a, .ftr-cols span {
  display: block;
  text-decoration: none;
  margin-top: 0.45rem;
  font-size: 0.98rem;
  color: #d4d4d4;
}
.ftr-cols h2 a { color: inherit; margin-top: 0; }
.ftr-cols a:hover { color: #ff8533; }
.ftr-legal {
  width: min(var(--measure), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a7a7a;
}
.ftr-legal a { text-decoration: none; color: #7a7a7a; }
@media (min-width: 800px) {
  .ftr-grid { grid-template-columns: 1fr 2fr; align-items: start; }
  .ftr-cols { grid-template-columns: 1fr 1fr 0.8fr; }
}

.qf-fiche {
  background: #fff;
  color: #0a0a0a;
  box-shadow: var(--ombre-fiche);
  border: 3px solid #0a0a0a;
  position: relative;
}
.qf-fiche::before {
  content: "";
  display: block;
  height: 16px;
  background: repeating-linear-gradient(-45deg, #0a0a0a 0 10px, #ff6a00 10px 20px);
}
.qf-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.2rem 0.85rem;
  background: #111;
  color: #fff;
}
.qf-head h2 { font-size: 1.35rem; color: #fff; }
.qf-stamp {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff6a00;
  border: 1px solid #ff6a00;
  padding: 0.28rem 0.4rem;
  transform: rotate(-6deg);
  white-space: nowrap;
}
.qf-form { display: grid; gap: 0.75rem; padding: 1.1rem 1.2rem 1.25rem; }
.qf-field { display: grid; gap: 0.28rem; }
.qf-field span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5c5c5c;
}
.qf-field input, .qf-field select, .qf-field textarea {
  width: 100%;
  border: 1px solid #c8c8c8;
  background: #fff;
  color: #0a0a0a;
  padding: 0.72rem 0.75rem;
  border-radius: var(--radius);
  font-size: 1rem;
}
.qf-field textarea { min-height: 6.2rem; resize: vertical; font-family: var(--serif); }
.qf-field input:focus, .qf-field select:focus, .qf-field textarea:focus {
  outline: 2px solid #ff6a00;
  outline-offset: 1px;
  border-color: transparent;
}
.qf-row { display: grid; gap: 0.75rem; }
.qf-submit {
  appearance: none;
  border: 0;
  background: #ff6a00;
  color: #0a0a0a;
  padding: 0.95rem 1rem;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  cursor: pointer;
}
.qf-submit:hover:not(:disabled) { background: #0a0a0a; color: #fff; }
.qf-submit:disabled { opacity: 0.65; cursor: wait; }
.qf-hint { font-size: 0.86rem; color: #5c5c5c; }
.qf-hint a { color: #0a0a0a; }
.qf-status { padding: 0.7rem 0.8rem; font-size: 0.95rem; }
.qf-ok { background: var(--ok-fond); color: var(--ok); }
.qf-err { background: var(--erreur-fond); color: var(--erreur); }
@media (min-width: 540px) { .qf-row { grid-template-columns: 1fr 1fr; } }

.bc-bar { background: #ececec; border-bottom: 1px solid #d8d8d8; }
.bc-nav { padding: 0.65rem 0; }
.bc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5c5c5c;
}
.bc-list li { display: flex; align-items: center; gap: 0.35rem; }
.bc-list li:not(:last-child)::after { content: "/"; color: #b0b0b0; }
.bc-list a { text-decoration: none; color: #0a0a0a; }
.bc-list a:hover { color: #ff6a00; }
.bc-list span { color: #ff6a00; }

.mesh { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.tp-faq .mesh, .hm-cvr-faq .mesh, .hm-perg-faq .mesh, .hm-pac-faq .mesh, .hm-pv-faq .mesh, .hm-ite-faq .mesh {
  border-top-color: rgba(10, 10, 10, 0.18);
}
.layoutA .tp-faq .mesh, .layoutB .tp-faq .mesh { border-top-color: rgba(255, 255, 255, 0.18); }
.layoutC .tp-faq .mesh { border-top-color: rgba(10, 10, 10, 0.18); }
.mesh-pillars { display: flex; flex-wrap: wrap; gap: 0.7rem 1.2rem; margin-bottom: 1.3rem; }
.mesh-pillars a {
  font-family: var(--display);
  font-size: 1.02rem;
  text-decoration: none;
  border-bottom: 2px solid #ff6a00;
}
.mesh-group h3 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 0.7rem;
  color: #ff6a00;
}
.mesh-group + .mesh-group { margin-top: 1.15rem; }
.mesh-group nav { display: flex; flex-wrap: wrap; gap: 0.45rem 0.9rem; }
.mesh-group a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 106, 0, 0.7);
}

.faq-list { display: grid; gap: 0.7rem; }
.faq-item { background: #fff; border: 2px solid #0a0a0a; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  padding: 1.05rem 2.4rem 1.05rem 1.05rem;
  position: relative;
  color: #0a0a0a;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 1.05rem;
  font-family: var(--mono);
  color: #ff6a00;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.05rem 1.15rem; color: #333; max-width: 44rem; }

.cta-band {
  background: #0a0a0a;
  color: #f2f2f2;
  padding: 0 0 3.4rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(255, 106, 0, 0.22) 48px, rgba(255, 106, 0, 0.22) 49px);
  pointer-events: none;
}
.cta-inner { position: relative; display: grid; gap: 1.2rem; padding-top: 3.4rem; }
.cta-inner h2 { font-size: clamp(1.8rem, 4.5vw, 2.7rem); max-width: 16ch; }
.cta-inner p { max-width: 36rem; color: #c8c8c8; font-size: 1.12rem; }
.cta-inner a {
  justify-self: start;
  background: #ff6a00;
  color: #0a0a0a;
  text-decoration: none;
  padding: 0.85rem 1.15rem;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
.cta-inner a:hover { background: #ff8533; color: #0a0a0a; }

.home-form-band { background: #ececec; padding: 2.4rem 0 3.2rem; }
.home-form-inner { max-width: 36rem; }
.home-stats { background: #ff6a00; color: #0a0a0a; }
.home-stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.3rem 0;
}
.home-stats-inner p { display: grid; }
.home-stats-inner strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
}
.home-stats-inner span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.home-featured { background: #111; color: #f2f2f2; padding: 3.2rem 0; }
.home-featured h2,
.home-secteurs h2,
.home-howto h2,
.home-regions h2,
.home-why h2,
.home-faq h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  margin: 0.4rem 0 1.5rem;
}
.home-feat-grid { display: grid; gap: 0.85rem; }
.home-feat {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem 1.25rem 1.4rem;
  text-decoration: none;
  min-height: 12rem;
  align-content: end;
}
.home-feat:hover { color: inherit; filter: brightness(1.08); }
.home-feat b { font-family: var(--display); font-size: 1.55rem; letter-spacing: -0.03em; }
.home-feat span { opacity: 0.82; }
.home-feat.f0 { background: #ff6a00; color: #0a0a0a; }
.home-feat.f1 { background: #1a1a1a; color: #f2f2f2; }
.home-feat.f2 { background: #0a0a0a; color: #fff; border: 2px solid #ff6a00; }
.home-feat.f3 { background: #2a2a2a; color: #f2f2f2; }
.home-feat.f4 { background: #d45500; color: #0a0a0a; }
.home-secteurs { background: #ececec; padding: 3.2rem 0; }
.home-tiles { display: grid; gap: 0.7rem; }
.home-tile {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1rem 1.15rem;
  text-decoration: none;
  min-height: 8.4rem;
}
.home-tile:nth-child(4n + 1) { background: #0a0a0a; color: #f2f2f2; }
.home-tile:nth-child(4n + 2) { background: #ff6a00; color: #0a0a0a; }
.home-tile:nth-child(4n + 3) { background: #1a1a1a; color: #f2f2f2; }
.home-tile:nth-child(4n + 4) { background: #d45500; color: #0a0a0a; }
.home-tile:hover { color: inherit; transform: translateY(-2px); }
.home-tile b { font-family: var(--display); font-size: 1.15rem; letter-spacing: -0.03em; }
.home-tile span { opacity: 0.8; font-size: 0.95rem; }
.home-tile em {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6a00;
  margin-top: auto;
}
.home-tile:nth-child(4n + 2) em,
.home-tile:nth-child(4n + 4) em { color: #0a0a0a; }
.home-howto { background: #0a0a0a; color: #f2f2f2; padding: 3.2rem 0; }
.home-steps { display: grid; gap: 0.85rem; }
.home-steps article { background: #1a1a1a; padding: 1.4rem 1.2rem 1.5rem; border-top: 4px solid #ff6a00; }
.home-steps h3 { font-size: 1.4rem; margin: 0.4rem 0 0.55rem; }
.home-steps p { color: #c8c8c8; }
.home-regions { background: #ff6a00; color: #0a0a0a; padding: 3.2rem 0; }
.home-city-grid { display: grid; gap: 0.7rem; }
.home-city {
  background: rgba(0, 0, 0, 0.16);
  padding: 1.1rem 1rem;
  text-decoration: none;
  color: inherit;
  display: block;
}
.home-city:hover { color: inherit; background: rgba(0, 0, 0, 0.24); }
.home-city strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.home-why { background: #ececec; padding: 3.2rem 0; }
.home-why-grid { display: grid; gap: 0.85rem; }
.home-why-grid article { background: #fff; padding: 1.3rem 1.15rem 1.4rem; border-left: 5px solid #ff6a00; }
.home-why-grid h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.home-faq { background: #111; color: #f2f2f2; padding: 3.2rem 0 3.6rem; }
@media (min-width: 720px) {
  .home-stats-inner { grid-template-columns: repeat(4, 1fr); }
  .home-feat-grid { grid-template-columns: 1.3fr 1fr; }
  .home-feat.f0 { grid-row: span 2; min-height: 22rem; }
  .home-tiles { grid-template-columns: repeat(3, 1fr); }
  .home-city-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 960px) {
  .home-steps, .home-why-grid { grid-template-columns: repeat(3, 1fr); }
  .home-tiles { grid-template-columns: repeat(4, 1fr); }
}

.hub-page { background: #ececec; color: #0a0a0a; padding: 2.4rem 0 3.4rem; }
.hub-page h1 { font-size: clamp(2rem, 5vw, 3.2rem); max-width: 18ch; margin: 0.4rem 0 1rem; }
.hub-lead { max-width: 40rem; font-size: 1.12rem; margin-bottom: 1.8rem; }
.hub-grid { display: grid; gap: 0.7rem; }
.hub-card {
  display: block;
  background: #fff;
  padding: 1.15rem 1.1rem;
  text-decoration: none;
  color: inherit;
  border-left: 5px solid #ff6a00;
}
.hub-card:hover { background: #111; color: #f2f2f2; }
.hub-card b {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.hub-card span { opacity: 0.82; font-size: 0.95rem; }
.hub-siblings { display: flex; flex-wrap: wrap; gap: 0.45rem 0.9rem; margin-top: 1.8rem; }
.hub-siblings a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 106, 0, 0.7);
}
.hub-form { margin-top: 2.4rem; max-width: 32rem; }
@media (min-width: 720px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .hub-grid { grid-template-columns: repeat(3, 1fr); } }

.tp-hero {
  background: #0a0a0a;
  color: #f2f2f2;
  position: relative;
  overflow: hidden;
}
.tp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0, transparent 28px, rgba(255, 106, 0, 0.12) 28px, rgba(255, 106, 0, 0.12) 29px);
  pointer-events: none;
}
.tp-top { position: relative; display: grid; gap: 1.8rem; padding: 2.2rem 0 2.8rem; }
.tp-copy h1, .hm-cvr-hero h1, .hm-pac-band h1, .hm-ite-inner h1, .hm-pv-mast h1 {
  font-size: clamp(2.1rem, 6vw, 3.5rem);
  max-width: 18ch;
  margin: 0.45rem 0 1rem;
  color: #fff;
}
.tp-lieu {
  color: #ff6a00;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.tp-lead { max-width: 38rem; color: #c8c8c8; font-size: 1.12rem; }
.tp-form { order: -1; }
.tp-jobs, .tp-local, .tp-why, .tp-faq { padding: 3rem 0; }
.tp-jobs { background: #ececec; }
.tp-local { background: #111; color: #f2f2f2; }
.tp-why { background: #ececec; }
.tp-faq { background: #111; color: #f2f2f2; }
.tp-jobs h2, .tp-local h2, .tp-why h2, .tp-faq h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0.4rem 0 1.3rem;
}
.tp-grid { display: grid; gap: 0.7rem; }
.tp-grid article, .tp-why article { padding: 1.2rem 1.1rem; }
.tp-jobs .tp-grid article { background: #1a1a1a; color: #f2f2f2; }
.tp-local .tp-grid article { background: #1a1a1a; }
.tp-why article { background: #fff; border-left: 5px solid #ff6a00; }
.tp-grid h3, .tp-why h3 { font-size: 1.18rem; margin-bottom: 0.35rem; }
.layoutB .tp-jobs { background: #111; color: #f2f2f2; }
.layoutB .tp-jobs .tp-grid article { background: #1f1f1f; }
.layoutB .tp-local { background: #ececec; color: #0a0a0a; }
.layoutB .tp-local .tp-grid article { background: #fff; color: #0a0a0a; }
.layoutC .tp-why { background: #111; color: #f2f2f2; }
.layoutC .tp-why article { background: #1a1a1a; color: #f2f2f2; }
.layoutC .tp-faq { background: #ececec; color: #0a0a0a; }
@media (min-width: 720px) {
  .tp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .tp-top { grid-template-columns: 1.1fr 0.9fr; align-items: start; padding: 3rem 0 3.4rem; }
  .tp-form { order: 0; position: sticky; top: 7.2rem; }
}

.legal-page { max-width: 40rem; padding: 3rem 0 4rem; }
.legal-box { background: #fff; padding: 2rem 1.4rem; }
.legal-box h1 { font-size: 2.2rem; margin: 0.4rem 0 1rem; }

.hm-cvr-hero { background: #0a0a0a; color: #f2f2f2; position: relative; overflow: hidden; }
.hm-cvr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0, transparent 28px, rgba(255, 106, 0, 0.12) 28px, rgba(255, 106, 0, 0.12) 29px);
  pointer-events: none;
}
.hm-cvr-top { position: relative; display: grid; gap: 1.8rem; padding: 2.2rem 0 2.8rem; }
.hm-cvr-jobs, .hm-cvr-why, .hm-cvr-faq { padding: 3rem 0; background: #ececec; }
.hm-cvr-jobs h2, .hm-cvr-roofs h2, .hm-cvr-communes h2, .hm-cvr-why h2, .hm-cvr-faq h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0.4rem 0 1.3rem;
}
.hm-cvr-job-grid { display: grid; gap: 0.7rem; }
.hm-cvr-job-grid article { background: #1a1a1a; color: #f2f2f2; padding: 1.2rem 1.1rem; }
.hm-cvr-job-grid h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.hm-cvr-job-grid p { color: #c8c8c8; }
.hm-cvr-roofs { background: #1a1a1a; color: #e8edf1; padding: 3rem 0; }
.hm-cvr-types { display: grid; gap: 0.8rem; }
.hm-cvr-types article { background: #111; padding: 1.3rem 1.15rem; }
.hm-cvr-types h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.hm-cvr-types p { color: #c5ced6; }
.hm-cvr-communes { background: #ff6a00; color: #0a0a0a; padding: 3rem 0; }
.hm-cvr-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hm-cvr-chips a {
  background: rgba(0, 0, 0, 0.22);
  padding: 0.55rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}
.hm-cvr-why-grid { display: grid; gap: 0.8rem; }
.hm-cvr-why-grid article { background: #fff; padding: 1.2rem 1.1rem; }
.hm-cvr-why-grid h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
@media (min-width: 720px) {
  .hm-cvr-job-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-cvr-types, .hm-cvr-why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .hm-cvr-top { grid-template-columns: 1.1fr 0.9fr; align-items: start; padding: 3rem 0 3.4rem; }
}

.hm-perg-hero { background: #0a0a0a; color: #f2f2f2; }
.hm-perg-stage { padding: 2.2rem 0 0.4rem; }
.hm-perg-stage h1 { font-size: clamp(2.2rem, 7vw, 4rem); max-width: 15ch; margin: 0.45rem 0 1rem; }
.hm-perg-accent { color: #ff6a00; }
.hm-perg-deck { display: grid; gap: 1.5rem; padding: 0 0 2.8rem; }
.hm-perg-form { order: -1; }
.hm-perg-story { max-width: 40rem; color: #c8c8c8; font-size: 1.12rem; }
.hm-perg-opt, .hm-perg-q, .hm-perg-why, .hm-perg-faq { padding: 3rem 0; }
.hm-perg-opt { background: #111; color: #f2f2f2; }
.hm-perg-opt h2, .hm-perg-q h2, .hm-perg-why h2, .hm-perg-faq h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0.35rem 0 1.2rem;
}
.hm-perg-opt-grid, .hm-perg-q-grid, .hm-perg-cols { display: grid; gap: 0.7rem; }
.hm-perg-opt-grid article, .hm-perg-q-grid article, .hm-perg-cols article { padding: 1.2rem 1.1rem; }
.hm-perg-opt-grid article { background: rgba(0, 0, 0, 0.22); }
.hm-perg-opt-grid h3, .hm-perg-q-grid h3, .hm-perg-cols h3 { font-size: 1.18rem; margin-bottom: 0.35rem; }
.hm-perg-q { background: #ececec; }
.hm-perg-q-grid article { background: #0a0a0a; color: #f2f2f2; }
.hm-perg-why, .hm-perg-faq { background: #ececec; }
.hm-perg-cols article { background: #fff; }
@media (min-width: 720px) {
  .hm-perg-opt-grid, .hm-perg-q-grid, .hm-perg-cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 880px) {
  .hm-perg-deck { grid-template-columns: 1fr 0.9fr; align-items: start; padding-top: 1.2rem; }
  .hm-perg-form { order: 0; }
  .hm-perg-opt-grid, .hm-perg-cols { grid-template-columns: repeat(4, 1fr); }
}

.hm-pac-hero { background: #0a0a0a; color: #f2f2f2; }
.hm-pac-band { display: grid; gap: 1.6rem; padding: 2.2rem 0 2.6rem; }
.hm-pac-band > div > p { max-width: 36rem; color: #c8c8c8; }
.hm-pac-housing, .hm-pac-primes, .hm-pac-why, .hm-pac-faq { padding: 3rem 0; }
.hm-pac-housing { background: #ececec; }
.hm-pac-housing h2, .hm-pac-study h2, .hm-pac-primes h2, .hm-pac-why h2, .hm-pac-faq h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0.35rem 0 1.1rem;
}
.hm-pac-houses { display: grid; gap: 0.7rem; }
.hm-pac-houses article { background: #1a1a1a; color: #f2f2f2; padding: 1.2rem 1.1rem; }
.hm-pac-houses h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.hm-pac-study { background: #111; color: #f2f2f2; padding: 3rem 0; }
.hm-pac-figure { margin-top: 1.2rem; background: #1a1a1a; overflow: auto; }
.hm-pac-figure table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hm-pac-figure th, .hm-pac-figure td {
  text-align: left;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid #334048;
  vertical-align: top;
}
.hm-pac-figure th {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: #ff6a00;
}
.hm-pac-caption {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ff6a00;
  padding: 0.6rem 0.9rem;
}
.hm-pac-primes { background: #0a0a0a; color: #f2f2f2; }
.hm-pac-prime-grid { display: grid; gap: 0.7rem; }
.hm-pac-prime-grid article { background: rgba(0, 0, 0, 0.2); padding: 1.15rem 1.05rem; }
.hm-pac-prime-grid h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.hm-pac-why, .hm-pac-faq { background: #ececec; }
.hm-pac-why-list { display: grid; gap: 0.7rem; }
.hm-pac-why-list div { background: #fff; padding: 1.15rem 1.05rem; display: grid; gap: 0.35rem; }
.hm-pac-why-list strong { font-family: var(--display); font-size: 1.2rem; letter-spacing: -0.03em; }
@media (min-width: 720px) {
  .hm-pac-houses, .hm-pac-prime-grid, .hm-pac-why-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .hm-pac-band { grid-template-columns: 1fr 0.9fr; align-items: start; padding: 3rem 0 3.2rem; }
}

.hm-pv-hero { background: #0a0a0a; color: #f2f2f2; }
.hm-pv-sheet { padding: 2.2rem 0 2.8rem; }
.hm-pv-mast { max-width: 40rem; }
.hm-pv-mast p { color: #c8c8c8; font-size: 1.12rem; }
.hm-pv-split { display: grid; gap: 2rem; margin-top: 2rem; align-items: start; }
.hm-pv-sun, .hm-pv-notes, .hm-pv-why, .hm-pv-faq { padding: 3rem 0; }
.hm-pv-sun { background: #111; color: #f2f2f2; }
.hm-pv-sun h2, .hm-pv-notes h2, .hm-pv-why h2, .hm-pv-faq h2 {
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  margin: 0.35rem 0 1.15rem;
}
.hm-pv-orient { display: grid; gap: 0.7rem; }
.hm-pv-orient article { background: rgba(0, 0, 0, 0.24); padding: 1.2rem 1.1rem; }
.hm-pv-orient h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.hm-pv-notes, .hm-pv-faq { background: #ececec; }
.hm-pv-note-grid { display: grid; gap: 0.7rem; }
.hm-pv-note-grid article { background: #0a0a0a; color: #f2f2f2; padding: 1.25rem 1.15rem; }
.hm-pv-note-grid h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.hm-pv-why { background: #111; color: #f2f2f2; }
.hm-pv-why-grid { display: grid; gap: 0.7rem; }
.hm-pv-why-grid article { background: #1a1a1a; padding: 1.2rem 1.1rem; }
.hm-pv-why-grid h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
@media (min-width: 720px) {
  .hm-pv-orient, .hm-pv-note-grid, .hm-pv-why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .hm-pv-split { grid-template-columns: 0.95fr 1.05fr; }
  .hm-pv-split .tp-form { order: 0; position: sticky; top: 7.2rem; }
}

.hm-ite-hero { background: #0a0a0a; color: #f2f2f2; }
.hm-ite-inner { display: grid; gap: 1.6rem; padding: 2.2rem 0 2.4rem; }
.hm-ite-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 10rem; }
.hm-ite-before, .hm-ite-after {
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hm-ite-before { background: #8a6a55; color: #2a1f18; }
.hm-ite-after { background: #111; color: #e8edf0; }
.hm-ite-details, .hm-ite-ent, .hm-ite-why, .hm-ite-faq { padding: 3rem 0; }
.hm-ite-details { background: #ececec; }
.hm-ite-details h2, .hm-ite-ent h2, .hm-ite-why h2, .hm-ite-faq h2 {
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  margin: 0.35rem 0 1.15rem;
}
.hm-ite-stack, .hm-ite-ent-grid, .hm-ite-why-grid { display: grid; gap: 0.7rem; }
.hm-ite-stack article { background: #0a0a0a; color: #f2f2f2; padding: 1.2rem 1.1rem; }
.hm-ite-stack h3, .hm-ite-ent-grid h3, .hm-ite-why-grid h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.hm-ite-ent { background: #1a1a1a; color: #f2f2f2; }
.hm-ite-ent-grid article { background: #111; padding: 1.15rem 1.05rem; }
.hm-ite-why, .hm-ite-faq { background: #ececec; }
.hm-ite-why-grid article { background: #fff; padding: 1.2rem 1.1rem; }
@media (min-width: 720px) {
  .hm-ite-stack, .hm-ite-ent-grid, .hm-ite-why-grid { grid-template-columns: repeat(3, 1fr); }
  .hm-ite-strip { min-height: 12rem; }
}
@media (min-width: 960px) {
  .hm-ite-inner { grid-template-columns: 1.1fr 0.9fr; align-items: start; padding: 3rem 0 3.2rem; }
  .hm-ite-inner .tp-form { order: 0; position: sticky; top: 7.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
