:root {
  --black: #0e0e0f;
  --black-soft: #171717;
  --white: #ffffff;
  --paper: #f6f5f3;
  --muted: #77716c;
  --line: #dedbd7;
  --red: #c92424;
  --red-dark: #9f1719;
  --shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Century Gothic", Arial, sans-serif;
  color: var(--black);
  background: #101010;
}

body.is-editing {
  padding-top: 74px;
}

body.has-lightbox {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(180deg, rgba(18, 18, 19, .98), rgba(10, 10, 11, .96));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
  backdrop-filter: blur(16px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 36, 36, .7), transparent);
}

.nav {
  position: relative;
  z-index: 1;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 270px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.menu a {
  padding: 11px 13px;
  border-radius: 8px;
  opacity: .95;
  transition: color .2s ease, opacity .2s ease, background .2s ease;
}

.menu a:hover {
  color: #ffdddd;
  background: rgba(255, 255, 255, .07);
}

.menu .phone {
  margin-left: 10px;
  padding: 13px 18px;
  background: linear-gradient(180deg, #da2b2b, var(--red-dark));
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(201, 36, 36, .35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.page-hero {
  min-height: 560px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media::before {
  background: linear-gradient(90deg, rgba(14, 14, 15, .98) 0%, rgba(14, 14, 15, .82) 36%, rgba(14, 14, 15, .18) 72%);
}

.hero-media::after {
  background: linear-gradient(180deg, rgba(14, 14, 15, .05), rgba(14, 14, 15, .65));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 90px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: .98;
  text-transform: uppercase;
  font-weight: 800;
}

h2 {
  margin-bottom: 34px;
  text-align: center;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 800;
}

h2 span {
  color: var(--red);
}

.hero-services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  font-size: clamp(19px, 2.2vw, 28px);
}

.hero-services span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 34px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #db2d2d, #b71f20);
  box-shadow: 0 12px 28px rgba(201, 36, 36, .3);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
}

.section {
  padding: 78px 0;
}

.light {
  background: var(--paper);
}

.dark {
  color: #fff;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, .06), transparent 28%),
    linear-gradient(135deg, #121212, #090909);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .13);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 36, 36, .16);
  border-radius: 8px;
  color: #111;
  background: linear-gradient(180deg, #fff, #f3f1ee);
  box-shadow: inset 0 0 0 6px rgba(201, 36, 36, .035);
}

.service-icon svg {
  width: 46px;
  height: 46px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon .accent {
  stroke: var(--red);
}

.service-card strong {
  font-size: 18px;
  text-align: center;
}

.arrow {
  font-size: 24px;
  line-height: 1;
}

.text-link {
  display: table;
  margin: 34px auto 0;
  font-weight: 700;
  font-size: 17px;
}

.text-link::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--red);
}

.mobile-slider-controls {
  display: none;
}

.comparison {
  position: relative;
  height: clamp(280px, 42vw, 440px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #222;
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-img {
  clip-path: inset(0 0 0 50%);
}

.comparison input {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .18), 0 0 22px rgba(0, 0, 0, .45);
  pointer-events: none;
}

.handle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 68px;
  height: 54px;
  display: flex;
  align-items: center;
  place-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .48) calc(50% - 1px), rgba(255, 255, 255, .48) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, #e12d2d, #b7191b);
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .34), 0 0 0 7px rgba(201, 36, 36, .18);
  pointer-events: none;
}

.handle::before,
.handle::after {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.handle::before {
  content: "‹";
}

.handle::after {
  content: "›";
}

.label {
  position: absolute;
  bottom: 22px;
  z-index: 3;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 0 2px 15px rgba(0, 0, 0, .75);
}

.before-label {
  left: 28px;
}

.after-label {
  right: 28px;
}

.proof-strip {
  padding: 28px 0;
  border-block: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof-grid div {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 14px;
  border-right: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-icon {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, .16);
  border-radius: 999px;
  color: #111;
  background: #fff;
  box-shadow: inset 0 0 0 6px rgba(201, 36, 36, .04);
}

.proof-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-icon .accent {
  stroke: var(--red);
}

.proof-grid strong {
  font-size: 22px;
}

.proof-grid small {
  color: #4d4945;
  font-weight: 600;
}

.partners-section {
  overflow: hidden;
  padding-block: 60px;
  border-block: 1px solid var(--line);
}

.partners-section .eyebrow {
  text-align: center;
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  padding-block: 8px;
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 16vw);
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(246, 245, 243, 0));
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(246, 245, 243, 0));
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: partner-scroll 34s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-logo {
  width: 250px;
  height: 124px;
  padding: 22px 28px;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.partner-logo a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.partner-logo a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 8px;
}

.partner-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
  filter: saturate(.92);
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: 190px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #111;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  font: inherit;
  text-align: left;
  transition: transform .2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .76));
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.project-card h3 {
  position: absolute;
  left: 24px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.project-card .gallery-badge {
  top: 14px;
  bottom: auto;
}

.realisations-intro p {
  color: #4d4945;
  line-height: 1.8;
}

.category-stack {
  display: grid;
  gap: 46px;
}

.category-section {
  display: grid;
  gap: 20px;
}

.category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.category-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
}

.category-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-heading a {
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 800;
}

.category-heading a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--red);
}

.realisation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.realisation-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .2s ease, opacity .2s ease;
}

.realisation-card:hover {
  transform: translateY(-4px);
}

.chantier-open {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  font: inherit;
  background: transparent;
  cursor: zoom-in;
}

.realisation-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.chantier-card {
  display: grid;
}

.chantier-cover {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.gallery-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(17, 17, 17, .82);
  font-size: 12px;
  font-weight: 800;
}

.realisation-card div {
  padding: 20px;
}

.realisation-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.realisation-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.realisation-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.empty-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.empty-category p {
  margin: 0;
  color: #4d4945;
  font-weight: 700;
}

.empty-category a {
  color: var(--red);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 34px;
  background: rgba(0, 0, 0, .92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0;
}

.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .45);
}

.lightbox figcaption {
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 32px;
  line-height: 1;
}

.lightbox-nav {
  width: 64px;
  height: 64px;
  font-size: 46px;
  line-height: 1;
}

.center-cta {
  display: grid;
  justify-items: center;
  text-align: center;
}

.center-cta h2 {
  max-width: 760px;
  text-transform: none;
}

.center-cta p {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.8;
}

.company-intro p {
  color: #4d4945;
  line-height: 1.85;
}

.company-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.company-values article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.company-values span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.company-values h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.company-values p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.team-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.team-photo {
  aspect-ratio: 1.18 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #151515;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.team-card div:last-child {
  padding: 22px;
}

.team-card p {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.team-card small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 58px;
}

.split h2 {
  text-align: left;
  text-transform: none;
  font-size: clamp(29px, 4vw, 48px);
}

.split p {
  color: rgba(255, 255, 255, .76);
  line-height: 1.8;
}

.light .split p {
  color: #4d4945;
}

.detail img,
.split > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--red);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps div,
.reviews article,
.quote-form {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.steps div {
  padding: 26px;
}

.steps span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.google-review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.google-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: conic-gradient(from 45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  font-size: 30px;
  font-weight: 800;
}

.google-score {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.google-score small {
  margin-left: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.google-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.reviews article {
  padding: 34px;
  color: #111;
}

.stars {
  color: var(--red);
  font-weight: 800;
}

.stars span {
  margin-left: 14px;
  color: #111;
  font-weight: 600;
}

.review-author {
  display: block;
  margin-bottom: 12px;
}

.review-time {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.reviews p:last-child {
  margin-bottom: 0;
  line-height: 1.8;
}

.cta {
  color: #fff;
  background: linear-gradient(135deg, #181818, #070707);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: #111;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #302b27;
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  font: inherit;
  font-size: 15px;
  background: #fbfaf8;
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 13px;
}

.privacy-note {
  margin: -4px 0 0;
  color: #6f6961 !important;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-copy .check-list {
  margin-bottom: 28px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-direct a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, .06);
}

.form-alert {
  margin: 0;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 800;
}

.form-alert.success {
  color: #155724 !important;
  background: #d7f4df;
}

.form-alert.error {
  color: #7a1515 !important;
  background: #f8dddd;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  padding: 42px 0;
  color: #fff;
  background: #080808;
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer img {
  width: 170px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
}

.footer-center {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.footer-meta {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
}

.footer-legal a {
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.footer-legal a:hover {
  color: #fff;
}

.footer a {
  color: #fff;
  font-weight: 800;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 19px;
  line-height: 1;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.social-links a:hover {
  border-color: rgba(201, 34, 34, .85);
  background: var(--red);
  transform: translateY(-2px);
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: 92px 0 54px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(201, 36, 36, .22), transparent 28%),
    linear-gradient(135deg, #141414, #070707);
}

.legal-hero h1 {
  margin: 8px 0 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  text-align: left;
}

.legal-content {
  display: grid;
  gap: 28px;
  padding-block: 54px 72px;
}

.legal-block {
  max-width: 900px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}

.legal-block h2 {
  margin: 0 0 14px;
  font-size: 24px;
  text-align: left;
}

.legal-block p,
.legal-block li {
  color: #4d4945;
  line-height: 1.75;
}

.legal-block p:last-child,
.legal-block ul:last-child {
  margin-bottom: 0;
}

.site-map-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-map-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #111;
  font-weight: 800;
}

.site-map-list a::after {
  content: "→";
  color: var(--red);
}

.edit-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  color: #fff;
  background: #111;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}

.edit-toolbar span {
  margin-right: auto;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.edit-toolbar .btn {
  min-height: 42px;
}

.is-editing [data-edit] {
  outline: 2px dashed rgba(201, 36, 36, .55);
  outline-offset: 4px;
  cursor: text;
}

.is-editing [data-edit]:focus {
  outline-color: #fff;
  box-shadow: 0 0 0 5px rgba(201, 36, 36, .32);
}

.edit-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: 360px;
  padding: 13px 16px;
  border-radius: 8px;
  color: #fff;
  background: #111;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.edit-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .wrap {
    width: min(100% - 28px, 760px);
  }

  .nav {
    min-height: 82px;
  }

  body.is-editing {
    padding-top: 128px;
  }

  .edit-toolbar {
    min-height: 128px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .edit-toolbar span {
    width: 100%;
  }

  .brand img {
    width: 230px;
    height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(14, 14, 15, .98);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 14px 0;
    border-radius: 0;
  }

  .menu .phone {
    margin-top: 10px;
    text-align: center;
  }

  .hero {
    min-height: 560px;
  }

  .hero-media::before {
    background: linear-gradient(90deg, rgba(14, 14, 15, .96), rgba(14, 14, 15, .6));
  }

  .section {
    padding: 58px 0;
  }

  .service-grid,
  .project-grid,
  .realisation-grid,
  .company-values,
  .team-grid,
  .steps,
  .reviews,
  .google-review-head,
  .split {
    grid-template-columns: 1fr;
  }

  .google-actions {
    justify-content: flex-start;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .realisation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid div {
    border-right: 0;
  }

  .category-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .split {
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 460px);
  }

  .site-header {
    background: rgba(12, 12, 13, .98);
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 176px;
    height: 48px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu {
    top: 68px;
    left: -12px;
    right: -12px;
    padding: 10px 22px 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 26px 45px rgba(0, 0, 0, .36);
  }

  .menu a {
    padding: 16px 4px;
    font-size: 16px;
  }

  .menu .phone {
    margin-left: 0;
    padding: 15px 18px;
  }

  .hero {
    min-height: 590px;
    align-items: end;
  }

  .page-hero {
    min-height: 520px;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(14, 14, 15, .18), rgba(14, 14, 15, .9) 62%, rgba(14, 14, 15, .98));
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(14, 14, 15, .55), rgba(14, 14, 15, .1));
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    padding-block: 92px 42px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1.03;
  }

  h2 {
    margin-bottom: 24px;
    font-size: 25px;
  }

  .hero-services {
    gap: 9px;
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.35;
  }

  .hero-copy {
    margin-bottom: 24px;
    line-height: 1.65;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 52px;
  }

  .section {
    padding: 48px 0;
  }

  .service-grid,
  .realisation-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .mobile-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 12px 18px;
    margin-inline: -12px;
  }

  .mobile-slider::-webkit-scrollbar {
    display: none;
  }

  .mobile-slider > * {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .service-grid.mobile-slider > * {
    flex-basis: 76%;
  }

  .proof-grid.mobile-slider > * {
    flex-basis: 82%;
  }

  .steps.mobile-slider > * {
    flex-basis: 78%;
  }

  .project-grid.mobile-slider > *,
  .realisation-grid.mobile-slider > * {
    flex-basis: 88%;
  }

  .company-values article {
    min-height: 0;
    padding: 24px;
  }

  .team-grid {
    gap: 18px;
  }

  .mobile-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
  }

  .mobile-slider-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 17, 17, .16);
    border-radius: 999px;
    color: #111;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    font: inherit;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
  }

  .mobile-slider-controls button:disabled {
    opacity: .35;
  }

  .mobile-slider-controls span {
    min-width: 42px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
  }

  .dark .mobile-slider-controls button,
  .proof-strip .mobile-slider-controls button {
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
    background: #161616;
  }

  .dark .mobile-slider-controls span {
    color: rgba(255, 255, 255, .68);
  }

  .service-card {
    min-height: 168px;
  }

  .proof-grid div {
    min-height: 96px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .06);
  }

  .proof-grid strong {
    font-size: 21px;
  }

  .project-card,
  .project-card img {
    min-height: 245px;
  }

  .partners-section {
    padding-block: 42px;
  }

  .partner-marquee {
    margin-top: 0;
    padding: 4px 0 14px;
    overflow-x: auto;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .partner-marquee::-webkit-scrollbar {
    display: none;
  }

  .partner-marquee::before,
  .partner-marquee::after {
    display: none;
  }

  .partner-track {
    gap: 14px;
    padding-inline: 12px;
    animation: none;
  }

  .partner-logo--clone {
    display: none;
  }

  .partner-logo {
    flex: 0 0 clamp(168px, 58vw, 230px);
    width: auto;
    height: 108px;
    padding: 18px 20px;
    scroll-snap-align: center;
  }

  .partner-logo img {
    max-height: 68px;
  }

  .category-stack {
    gap: 42px;
  }

  .category-heading {
    gap: 14px;
    padding-bottom: 14px;
  }

  .category-heading h3 {
    font-size: 25px;
  }

  .category-heading a {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(201, 36, 36, .24);
    border-radius: 8px;
    background: #fff;
    text-align: center;
  }

  .category-heading a::before {
    display: none;
  }

  .empty-category {
    display: grid;
    padding: 20px;
  }

  .empty-category a {
    display: inline-flex;
    justify-content: center;
    padding: 13px 14px;
    border: 1px solid rgba(201, 36, 36, .22);
    border-radius: 8px;
  }

  .comparison {
    height: 330px;
  }

  .handle {
    width: 72px;
    height: 56px;
    padding-inline: 14px;
  }

  .handle::before,
  .handle::after {
    font-size: 30px;
  }

  .label {
    bottom: 16px;
    font-size: 18px;
  }

  .before-label {
    left: 18px;
  }

  .after-label {
    right: 18px;
  }

  .split h2 {
    font-size: 31px;
  }

  .detail img,
  .split > img {
    aspect-ratio: 1 / .78;
  }

  .google-review-head {
    padding: 20px;
  }

  .google-mark {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .google-score {
    font-size: 23px;
  }

  .google-score small {
    display: block;
    margin: 4px 0 0;
  }

  .google-actions,
  .google-actions .btn,
  .contact-direct,
  .contact-direct a {
    width: 100%;
  }

  .quote-form {
    padding: 22px;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 56px;
    transform: translateY(-50%);
    font-size: 36px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox img {
    max-height: 72vh;
  }

  .footer .wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
    transform: none;
  }

  .partner-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
