:root {
  --blue: #075fc4;
  --blue-dark: #06356e;
  --red: #ed1b2e;
  --ink: #102033;
  --muted: #5d6a78;
  --ice: #eef6ff;
  --line: #dce5ee;
  --white: #fff;
  --shadow: 0 24px 60px rgba(7, 38, 76, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    16px/1.55 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 max(5vw, 24px);
  position: absolute;
  z-index: 10;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  height: 58px;
  white-space: nowrap;
}
.brand-word {
  display: flex;
  align-items: center;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.09em;
}
.brand-cli {
  color: #4da0ff;
}
.brand-m {
  position: relative;
  z-index: 2;
  color: #1681ef;
  font-size: 1.62em;
  line-height: 0.7;
  margin-left: -0.04em;
  letter-spacing: -0.18em;
  transform: translateY(-1px);
  text-shadow: 0 2px 5px rgba(0, 35, 83, 0.25);
}
.brand-d {
  position: relative;
  z-index: 1;
  color: #ff3143;
  font-size: 1.56em;
  line-height: 0.7;
  margin-left: -0.18em;
  letter-spacing: -0.15em;
  transform: translateY(-1px);
}
.brand-omia {
  color: #ff3f4f;
  margin-left: -0.04em;
}
.site-header nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 650;
  font-size: 0.94rem;
}
.site-header nav a:hover {
  color: #cae3ff;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  border: 0;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(237, 27, 46, 0.25);
  transition: 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #d90f21;
}
.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}
.hero {
  min-height: 830px;
  position: relative;
  background: #071b32;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/climdomia-salon-climatise.png") center/cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 19, 37, 0.94) 0%,
      rgba(4, 28, 54, 0.85) 42%,
      rgba(4, 25, 45, 0.22) 72%
    ),
    linear-gradient(0deg, rgba(4, 22, 39, 0.65), transparent 46%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: auto;
  padding: 154px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 70px;
  align-items: center;
}
.hero-copy {
  max-width: 650px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.77rem;
  font-weight: 850;
  margin: 0 0 18px;
  color: #9fd0ff;
}
.eyebrow.blue {
  color: var(--blue);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(3.2rem, 6.7vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}
.lead {
  font-size: 1.2rem;
  max-width: 600px;
  color: #e0ebf5;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 34px 0 46px;
}
.text-link {
  font-weight: 800;
}
.proof-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 25px;
}
.proof-row li {
  padding-right: 18px;
}
.proof-row strong,
.proof-row span {
  display: block;
}
.proof-row strong {
  font-size: 0.95rem;
}
.proof-row span {
  font-size: 0.76rem;
  color: #b9c9d8;
  margin-top: 3px;
}
.lead-form {
  background: #fff;
  color: var(--ink);
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.form-heading h2 {
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  margin: 5px 0 8px;
}
.form-heading p {
  font-size: 0.9rem;
  color: var(--muted);
}
.step {
  color: var(--blue);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  margin: 12px 0;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 95, 196, 0.1);
}
.button-full {
  width: 100%;
  margin-top: 12px;
}
.form-note,
.form-status {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 10px 0 0;
  text-align: center;
}
.form-status {
  color: var(--blue-dark);
  font-weight: 700;
}
.section {
  max-width: 1180px;
  margin: auto;
  padding: 100px 24px;
}
.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: end;
}
.intro > p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 610px;
}
.services {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}
.service-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}
.service-card.featured {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}
.service-card p {
  color: var(--muted);
  margin: 0;
}
.service-card.featured p {
  color: #cbdcee;
}
.number {
  font-size: 0.74rem;
  font-weight: 900;
  color: var(--red);
}
.process {
  max-width: none;
  background: var(--ice);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding-left: max(calc((100vw - 1180px) / 2 + 24px), 24px);
  padding-right: max(calc((100vw - 1180px) / 2 + 24px), 24px);
}
.process-title {
  position: sticky;
  top: 40px;
  align-self: start;
}
.process-title > p:last-child {
  color: var(--muted);
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 0 0 36px;
  position: relative;
}
.timeline li:not(:last-child):before {
  content: "";
  position: absolute;
  left: 26px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: #b9d1e9;
}
.timeline li > span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  border: 1px solid #bfd4e9;
  display: grid;
  place-items: center;
  font-weight: 900;
  z-index: 1;
}
.timeline h3 {
  margin: 4px 0 6px;
}
.timeline p {
  color: var(--muted);
  margin: 0;
}
.local {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.local-copy p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 30px;
}
.map-card {
  height: 430px;
  background:
    radial-gradient(circle at 48% 45%, #fff 0 3%, transparent 3.2%),
    linear-gradient(135deg, #edf6ff, #dfeeff);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #d1e3f4;
}
.department {
  position: absolute;
  font-size: 12rem;
  color: rgba(7, 95, 196, 0.06);
  right: 20px;
  bottom: -50px;
}
.map-ring {
  position: absolute;
  border: 1px solid rgba(7, 95, 196, 0.25);
  border-radius: 50%;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
}
.ring-one {
  width: 240px;
  height: 240px;
}
.ring-two {
  width: 390px;
  height: 390px;
}
.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.8rem;
}
.map-pin span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(237, 27, 46, 0.12);
}
.map-pin.main {
  left: 45%;
  top: 45%;
  font-size: 1rem;
}
.map-pin.pithiviers {
  left: 53%;
  top: 18%;
}
.map-pin.montargis {
  right: 12%;
  top: 48%;
}
.map-pin.gien {
  right: 19%;
  bottom: 20%;
}
.cta {
  max-width: 1180px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 18px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.cta h2 {
  margin-bottom: 12px;
}
.cta p:last-child {
  color: #c5d8eb;
  max-width: 700px;
  margin: 0;
}
.button-white {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: none;
  white-space: nowrap;
}
.button-white:hover {
  background: #e7f2ff;
  color: var(--blue-dark);
}
footer {
  background: #071a2e;
  color: #bac8d6;
  padding: 55px max(5vw, 24px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.brand-footer {
  font-size: 1.45rem;
}
footer p {
  margin: 0;
}
footer > div {
  display: flex;
  gap: 18px;
}
.footer-link {
  background: none;
  border: 0;
  color: #fff;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer small {
  grid-column: 1/-1;
  color: #7f91a3;
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 8px;
  border: 0;
  background: none;
  font-size: 2rem;
}
dialog {
  max-width: 620px;
  border: 0;
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow);
}
dialog::backdrop {
  background: rgba(1, 14, 28, 0.72);
}
.installer {
  padding-bottom: 72px;
}
.installer-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  column-gap: 80px;
  align-items: end;
}
.installer-heading .eyebrow {
  grid-column: 1/-1;
}
.installer-heading h2 {
  margin-bottom: 0;
}
.installer-heading > p:last-child {
  color: var(--muted);
  margin: 0;
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.role-grid article {
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 12px;
  padding: 30px;
  background: #fff;
}
.role-grid article > span {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--blue);
}
.role-grid h3 {
  font-size: 1.55rem;
  margin: 24px 0 10px;
}
.role-grid p {
  color: var(--muted);
  margin: 0;
}
.role-grid .role-k2b {
  border-top-color: var(--red);
  background: var(--blue-dark);
  color: #fff;
}
.role-grid .role-k2b > span {
  color: #ff6471;
}
.role-grid .role-k2b p {
  color: #cbdcee;
}
.partner-note {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 10px;
  background: #f4f8fc;
  border: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.88rem;
}
.partner-note strong {
  color: var(--blue-dark);
  white-space: nowrap;
}
.proof-band {
  max-width: 1180px;
  margin: 0 auto 20px;
  padding: 56px 60px;
  background: linear-gradient(120deg, var(--blue-dark), #075fc4);
  border-radius: 18px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.proof-band h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0;
}
.proof-band > p {
  margin: 0;
  color: #d7e9fb;
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }
  .site-header {
    height: 72px;
  }
  .site-header .button {
    margin-left: auto;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 118px;
    gap: 42px;
  }
  .hero-copy {
    max-width: 720px;
  }
  .proof-row {
    max-width: 650px;
  }
  .intro,
  .process,
  .local,
  .installer-heading,
  .proof-band {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services,
  .role-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 210px;
  }
  .process-title {
    position: static;
  }
  .proof-band {
    margin-left: 18px;
    margin-right: 18px;
  }
  .cta {
    margin-left: 18px;
    margin-right: 18px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .map-card {
    height: 360px;
  }
}
@media (max-width: 600px) {
  .site-header {
    padding: 0 18px;
  }
  .site-header .button-small {
    display: none;
  }
  .brand {
    font-size: 1.4rem;
  }
  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(3, 19, 37, 0.82),
      rgba(3, 19, 37, 0.95) 66%
    );
  }
  h1 {
    font-size: 3.2rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .proof-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .proof-row li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding-bottom: 12px;
  }
  .lead-form {
    padding: 23px 18px;
  }
  .section {
    padding: 76px 18px;
  }
  .intro {
    gap: 15px;
  }
  .process {
    padding-left: 18px;
    padding-right: 18px;
  }
  .role-grid {
    margin-top: 34px;
  }
  .partner-note {
    display: grid;
    gap: 6px;
  }
  .partner-note strong {
    white-space: normal;
  }
  .proof-band {
    padding: 44px 24px;
  }
  .local {
    padding-bottom: 60px;
  }
  .cta {
    padding: 44px 24px;
    display: block;
  }
  .cta .button {
    margin-top: 28px;
    width: 100%;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer small {
    grid-column: 1;
  }
}
.site-header nav {
  align-items: center;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown summary:after {
  content: "⌄";
  margin-left: 7px;
}
.dropdown-menu {
  position: absolute;
  top: 32px;
  left: -18px;
  width: 250px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
}
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
}
.dropdown-menu a:hover {
  background: var(--ice);
  color: var(--blue);
}
.service-card {
  transition: 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(7, 38, 76, 0.12);
}
.card-link {
  display: block;
  margin-top: 22px;
  color: var(--blue);
  font-size: 0.84rem;
}
.featured .card-link {
  color: #fff;
}
.inner-header {
  position: relative;
  background: #071a2e;
}
.page-hero {
  background: linear-gradient(135deg, #071a2e, #075fc4);
  color: #fff;
  padding: 92px 24px 82px;
}
.page-hero > div,
.detail-content {
  max-width: 1040px;
  margin: auto;
}
.page-hero > div {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.page-hero-copy {
  min-width: 0;
}
.page-hero-image {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(0, 15, 35, 0.28);
}
.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.page-hero .lead {
  max-width: 760px;
}
.detail-content {
  padding: 82px 24px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}
.detail-copy p,
.detail-copy li {
  color: var(--muted);
}
.detail-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.detail-panel {
  background: var(--ice);
  padding: 32px;
  border-radius: 16px;
}
.detail-panel h3 {
  margin-bottom: 18px;
}
.detail-panel ul {
  padding-left: 20px;
  margin: 0;
}
.detail-panel li {
  margin: 10px 0;
}
.detail-cta {
  margin-top: 42px;
  padding: 34px;
  background: var(--blue-dark);
  border-radius: 14px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.detail-cta p {
  margin: 0;
  color: #cbdcee;
}
.inner-footer {
  margin-top: 0;
}
@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .page-hero > div {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero-image {
    height: 320px;
  }
  .inner-header nav {
    display: none;
  }
  .page-hero {
    padding-top: 72px;
  }
  .detail-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .page-hero-image {
    height: 230px;
  }
}
.zone-list {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
}
.zone-list > div {
  display: grid;
  gap: 4px;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
}
.zone-list strong {
  color: var(--ink);
}
.zone-list span {
  color: var(--muted);
  font-size: 0.93rem;
}
.local-copy .zone-list + p {
  margin-bottom: 30px;
}
.department {
  font-size: 7rem;
  white-space: nowrap;
}
.map-pin.pithiviers {
  left: 64%;
  top: 16%;
}
.map-pin.gien {
  right: 8%;
  bottom: 10%;
}
.map-card {
  background: linear-gradient(145deg, #f4f9ff, #dcecff);
}
.map-axis {
  position: absolute;
  width: 2px;
  height: 56%;
  background: linear-gradient(var(--blue), var(--red));
  right: 24%;
  top: 12%;
  transform: rotate(18deg);
  opacity: 0.22;
}
.map-pin.minor {
  font-size: 0.68rem;
}
.map-pin.minor span {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 4px rgba(237, 27, 46, 0.1);
}
.map-pin.main {
  left: 18%;
  top: 68%;
}
.map-pin.saran {
  left: 13%;
  top: 58%;
}
.map-pin.olivet {
  left: 20%;
  top: 79%;
}
.map-pin.checy {
  left: 30%;
  top: 68%;
}
.map-pin.pithiviers {
  left: 43%;
  top: 43%;
}
.map-pin.montargis {
  left: 57%;
  right: auto;
  top: 64%;
}
.map-pin.ferrieres {
  left: 60%;
  top: 51%;
}
.map-pin.dordives {
  left: 68%;
  top: 39%;
}
.map-pin.chateau {
  left: 73%;
  top: 30%;
}
.map-pin.souppes {
  left: 77%;
  top: 20%;
}
.map-pin.nemours {
  left: 82%;
  top: 9%;
}
.map-pin.gien {
  display: none;
}
@media (max-width: 600px) {
  .map-pin.minor {
    font-size: 0.6rem;
  }
  .map-pin.ferrieres b,
  .map-pin.chateau b,
  .map-pin.souppes b {
    max-width: 80px;
    line-height: 1.05;
  }
  .department {
    font-size: 5rem;
  }
}
.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}
.brand-footer .brand-logo {
  width: 210px;
}
@media (max-width: 600px) {
  .brand-logo {
    width: 158px;
    max-height: 52px;
  }
  .brand-footer .brand-logo {
    width: 185px;
  }
}
.mobile-menu,
.mobile-promise {
  display: none;
}
@media (max-width: 900px) {
  .mobile-menu {
    display: block;
    position: relative;
    margin-left: auto;
  }
  .mobile-menu summary {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    list-style: none;
    background: rgba(4, 25, 45, 0.35);
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary i,
  .mobile-menu summary i:before,
  .mobile-menu summary i:after {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    content: "";
    position: relative;
  }
  .mobile-menu summary i:before {
    position: absolute;
    top: -6px;
  }
  .mobile-menu summary i:after {
    position: absolute;
    top: 6px;
  }
  .mobile-menu[open] summary i {
    background: transparent;
  }
  .mobile-menu[open] summary i:before {
    top: 0;
    transform: rotate(45deg);
  }
  .mobile-menu[open] summary i:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .mobile-menu-panel {
    position: absolute;
    right: 0;
    top: 48px;
    width: min(310px, calc(100vw - 36px));
    padding: 16px;
    background: #fff;
    color: var(--ink);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 20, 45, 0.28);
    display: grid;
    gap: 2px;
  }
  .mobile-menu-panel strong {
    padding: 7px 10px;
    color: var(--blue);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .mobile-menu-panel a {
    padding: 10px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.9rem;
  }
  .mobile-menu-panel a:hover {
    background: var(--ice);
  }
  .mobile-menu-panel .mobile-menu-cta {
    margin-top: 8px;
    background: var(--red);
    color: #fff;
    text-align: center;
  }
  .mobile-promise {
    display: block;
    grid-column: 1/-1;
    margin: 0 0 -8px;
    padding: 14px 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 35px rgba(0, 20, 45, 0.2);
    color: var(--ink);
  }
  .mobile-promise p {
    margin: 0 0 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.64rem;
    font-weight: 850;
    color: #26384a;
  }
  .mobile-service-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
  .mobile-service-icons span {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 6px;
    min-width: 0;
    padding: 2px 6px;
    border-right: 1px solid #d9e0e8;
    text-align: center;
  }
  .mobile-service-icons span:last-child {
    border-right: 0;
  }
  .mobile-service-icons svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-service-icons span:nth-child(3) svg,
  .mobile-service-icons span:nth-child(5) svg,
  .mobile-service-icons span:nth-child(6) svg {
    stroke: var(--red);
  }
  .mobile-service-icons b {
    font-size: 0.55rem;
    line-height: 1.12;
    color: #24384d;
  }
  .mobile-promise small {
    display: block;
    margin-top: 11px;
    padding-top: 9px;
    border-top: 1px solid #e2e8ee;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 750;
    color: #526477;
  }
}
.services {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  padding: 0 28px 30px;
  min-height: 440px;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 14px;
}
.service-photo {
  display: block;
  width: calc(100% + 56px);
  height: 235px;
  margin: 0 -28px 24px;
  object-fit: cover;
}
.service-card .number {
  margin-bottom: 16px;
}
.service-card > div {
  margin-top: auto;
}
@media (max-width: 900px) {
  .services {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 420px;
  }
}
@media (max-width: 600px) {
  .service-card {
    min-height: 400px;
  }
  .service-photo {
    height: 210px;
  }
}
.site-header {
  height: 132px;
}
.site-header .brand {
  height: auto;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(0, 20, 45, 0.18);
}
.brand-logo {
  width: 310px;
  max-height: 108px;
}
.hero-content {
  padding-top: 210px;
}
.inner-header {
  min-height: 132px;
}
.brand-footer {
  height: auto;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
}
.brand-footer .brand-logo {
  width: 280px;
  max-height: none;
}
@media (max-width: 900px) {
  .site-header {
    height: 116px;
  }
  .site-header .brand {
    padding: 6px 8px;
  }
  .brand-logo {
    width: 245px;
    max-height: 92px;
  }
  .hero-content {
    padding-top: 158px;
  }
  .inner-header {
    min-height: 116px;
  }
}
@media (max-width: 600px) {
  .site-header {
    padding-left: 10px;
    padding-right: 10px;
  }
  .brand-logo {
    width: min(230px, 60vw);
    max-height: 86px;
  }
  .mobile-menu summary span {
    display: none;
  }
  .mobile-menu summary {
    padding: 0 11px;
  }
  .hero-content {
    padding-top: 146px;
  }
  .brand-footer .brand-logo {
    width: 230px;
  }
}
.partner-note b {
  color: var(--blue);
  white-space: nowrap;
}
.loiret-card {
  min-height: 430px;
  padding: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, #06356e, #075fc4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.loiret-number {
  position: absolute;
  right: 24px;
  top: -38px;
  font-size: 12rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: -0.08em;
}
.loiret-card .eyebrow {
  margin-bottom: 8px;
}
.loiret-card h3 {
  margin: 0 0 28px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  letter-spacing: -0.05em;
}
.loiret-communes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  position: relative;
}
.loiret-communes span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 750;
}
@media (max-width: 600px) {
  .loiret-card {
    min-height: 0;
    padding: 38px 24px;
  }
  .loiret-number {
    font-size: 8rem;
  }
}
.partner-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}
.partner-intro > p {
  color: var(--muted);
  font-size: 1.06rem;
}
.partner-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.partner-roles article {
  padding: 38px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 16px;
  background: #fff;
}
.partner-roles article > span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--blue);
}
.partner-roles h3 {
  font-size: 1.65rem;
  margin: 20px 0;
}
.partner-roles ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.partner-roles li {
  margin: 10px 0;
}
.partner-roles .partner-k2b {
  border-top-color: var(--red);
  background: var(--blue-dark);
  color: #fff;
}
.partner-roles .partner-k2b > span {
  color: #ff6471;
}
.partner-roles .partner-k2b ul {
  color: #d3e1ef;
}
.partner-clarity {
  margin: 70px 0;
  padding: 50px;
  background: var(--ice);
  border-radius: 18px;
}
.partner-clarity h2 {
  max-width: 720px;
}
.partner-clarity > p:last-child {
  max-width: 820px;
  color: var(--muted);
  margin-bottom: 0;
}
.partner-faq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.partner-faq > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.partner-faq h3 {
  margin-bottom: 10px;
}
.partner-faq p {
  margin: 0;
  color: var(--muted);
}
.company-profile {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px 48px;
  margin: 0 0 70px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f4f9ff);
}
.company-mark {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-dark);
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.09);
}
.company-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 16px;
}
.company-copy > p:last-child {
  color: var(--muted);
  margin: 0;
}
.company-facts {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}
.company-facts > div {
  padding: 18px;
  border: 1px solid #d8e5f1;
  border-radius: 10px;
  background: #fff;
}
.company-facts dt {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}
.company-facts dd {
  margin: 6px 0 0;
  font-weight: 700;
  color: var(--ink);
}
.official-link {
  grid-column: 1/-1;
  color: var(--blue);
  font-weight: 850;
}
@media (max-width: 900px) {
  .partner-intro,
  .partner-roles,
  .partner-faq {
    grid-template-columns: 1fr;
  }
  .partner-intro {
    gap: 18px;
  }
  .partner-clarity {
    padding: 38px 28px;
  }
}
@media (max-width: 700px) {
  .company-profile {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }
  .company-mark {
    width: 105px;
    height: 105px;
    font-size: 2rem;
  }
  .company-facts {
    grid-template-columns: 1fr;
  }
  .company-copy,
  .company-facts,
  .official-link {
    grid-column: 1;
  }
}
@media (max-width: 600px) {
  .site-header .mobile-menu {
    margin-left: auto;
  }
  .mobile-promise {
    margin-top: -3px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .mobile-service-icons {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 12px;
  }
  .mobile-service-icons span:nth-child(3) {
    border-right: 0;
  }
  .mobile-service-icons span:nth-child(4) {
    border-left: 0;
  }
  .mobile-service-icons span:nth-child(n + 4) {
    padding-top: 10px;
    border-top: 1px solid #e1e7ed;
  }
}

.callback-request{display:flex!important;align-items:flex-start;gap:10px;font-size:.82rem;line-height:1.45}.callback-request input{width:18px!important;min-width:18px;height:18px;accent-color:#075fc4;margin-top:4px}.form-note a{text-decoration:underline}footer nav{font-size:.85rem;line-height:2}
