:root {
  --blue: #0a7fa9;
  --blue-deep: #065b7c;
  --sand: #d6b48a;
  --sand-deep: #a77f4f;
  --black: #0c1116;
  --black-soft: #161d24;
  --white: #f5efe7;
  --line: rgba(255,255,255,.08);
  --text: #f3f0ea;
  --text-dark: #10161d;
  --muted: rgba(243,240,234,.72);
  --container: 1260px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-lock {
  overflow: hidden;
}

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

@supports not (overflow: clip) {
  html, body {
    overflow-x: hidden;
  }
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.metro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.metro-btn:hover {
  transform: translateY(-2px);
}

.metro-btn--primary {
  background: var(--blue);
  color: #fff;
}

.metro-btn--primary:hover {
  background: var(--blue-deep);
}

.metro-btn--outline {
  border-color: rgba(245,239,231,.45);
  color: var(--white);
  background: transparent;
}

.metro-btn--outline:hover {
  background: rgba(245,239,231,.08);
}

.metro-btn--ghost {
  background: var(--sand);
  color: var(--text-dark);
}

.metro-btn--ghost:hover {
  background: #e0c29b;
}

.metro-btn--small {
  min-height: 46px;
  padding: 0 18px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 17, 22, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: var(--header-height);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  background: rgba(255,255,255,.02);
}

.site-brand__text {
  display: grid;
  gap: 2px;
}

.site-brand__text strong {
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-brand__text span {
  color: var(--sand);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 36px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,231,.78);
  border-left: 1px solid rgba(255,255,255,.05);
}

.site-nav a:last-child {
  border-right: 1px solid rgba(255,255,255,.05);
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(10,127,169,.12);
  color: #fff;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-contact {
  color: var(--sand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}

.menu-toggle,
.drawer-close {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin-left: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100%);
  max-width: 100vw;
  height: 100vh;
  background: #11181f;
  transform: translate3d(100%, 0, 0);
  transition: transform .28s ease, visibility .28s ease;
  padding: 24px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid rgba(255,255,255,.08);
  visibility: hidden;
  pointer-events: none;
  overscroll-behavior: contain;
  will-change: transform;
}

.drawer-open .mobile-drawer {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-drawer__top strong {
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.drawer-close {
  font-size: 36px;
  line-height: 1;
}

.mobile-drawer__nav {
  display: grid;
}

.mobile-drawer__nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mobile-drawer__nav a.is-active,
.mobile-drawer__nav a:hover {
  color: var(--sand);
}

.mobile-drawer__contact {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.mobile-drawer__contact a {
  color: rgba(245,239,231,.8);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 110;
}

.drawer-open .drawer-backdrop {
  opacity: 1;
  visibility: visible;
}

/* HERO */
.metro-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__bg-fallback,
.hero__overlay,
.hero__content {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
  overflow: hidden;
  background: #0b141c;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


.hero__bg-fallback {
  z-index: -1;
  background:
    url("assets/background.jpg") center center / cover no-repeat,
    linear-gradient(135deg, #0b141c 0%, #121a22 45%, #0a7fa9 75%, #d6b48a 100%);
  opacity: 0;
  pointer-events: none;
}


.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(rgba(12,17,22,.42), rgba(12,17,22,.62)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.03) 0,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 160px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.02) 0,
      rgba(255,255,255,.02) 1px,
      transparent 1px,
      transparent 160px
    );
}

.hero__content {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__inner {
  width: min(100%, 860px);
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}

.hero__inner h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-wrap: balance;
}

.hero__inner h1 span {
  color: var(--sand);
}

.hero__inner p {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.7;
  color: rgba(245,239,231,.88);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* CONTENT */
.metro-section {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.intro-strip {
  background: #131a21;
}

.intro-strip__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.intro-strip__title,
.intro-strip__text {
  padding: 42px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-strip__title {
  background: var(--black-soft);
  border-right: 1px solid rgba(255,255,255,.08);
}

.intro-strip__title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  text-transform: uppercase;
  line-height: .95;
}

.intro-strip__text {
  background: #0f151b;
}

.intro-strip__text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,239,231,.82);
}

.tiles-section {
  background: var(--black);
  padding: 24px 0 34px;
}

.metro-grid {
  display: grid;
  gap: 16px;
}

.metro-grid--services {
  grid-template-columns: 1.2fr .8fr .8fr;
}

.metro-tile {
  min-height: 290px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.metro-tile--large {
  min-height: 430px;
}

.metro-tile--blue {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.metro-tile--sand {
  background: linear-gradient(135deg, var(--sand-deep), var(--sand));
  color: var(--text-dark);
}

.metro-tile--dark {
  background: linear-gradient(135deg, #151c24, #0f151b);
}

.metro-tile__number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  opacity: .14;
}

.metro-tile h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 42px);
  text-transform: uppercase;
  line-height: .98;
}

.metro-tile p {
  margin: 0;
  max-width: 34ch;
  font-size: 17px;
  line-height: 1.7;
}

.tile-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 18px;
}

.cta-band {
  background: #10161d;
}

.cta-band__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
}

.cta-band__wrap > div {
  padding: 42px;
  border-right: 1px solid rgba(255,255,255,.08);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-band__wrap > div:last-child {
  border-right: 0;
}

.cta-band__wrap h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  line-height: .98;
}

.cta-band__wrap p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,239,231,.82);
}

.cta-band__action {
  align-items: flex-start;
}

.site-footer {
  background: #0b1015;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.site-footer__grid > div {
  padding: 40px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.site-footer__grid > div:last-child {
  border-right: 0;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 28px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.site-footer span {
  display: block;
  margin: 0 0 10px;
  color: rgba(245,239,231,.78);
  line-height: 1.7;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(245,239,231,.6);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1240px) {
  .site-nav a {
    padding-inline: 14px;
  }

  .header-contact {
    display: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 80px;
  }

  .desktop-quote,
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-height);
  }

  .metro-grid--services,
  .cta-band__wrap,
  .intro-strip__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .intro-strip__title,
  .cta-band__wrap > div,
  .site-footer__grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .site-footer__grid > div:last-child,
  .cta-band__wrap > div:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 1101px) {
  .mobile-drawer,
  .drawer-backdrop {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .container,
  .hero__container {
    width: min(100%, calc(100% - 32px));
  }

  .site-brand__text strong {
    font-size: 16px;
  }

  .site-brand__text span {
    font-size: 10px;
  }

  .site-brand img {
    width: 54px;
    height: 54px;
  }

  .site-header__inner {
    gap: 14px;
  }

  .hero__overlay {
    background:
      linear-gradient(rgba(12,17,22,.50), rgba(12,17,22,.72)),
      repeating-linear-gradient(
        90deg,
        rgba(255,255,255,.02) 0,
        rgba(255,255,255,.02) 1px,
        transparent 1px,
        transparent 120px
      );
  }

  .hero__inner {
    max-width: 100%;
    text-align: center;
    padding: 40px 0;
  }

  .hero__inner h1 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero__inner p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
  }

  .hero__actions .metro-btn {
    width: min(100%, 320px);
  }

  .intro-strip__title,
  .intro-strip__text,
  .metro-tile,
  .cta-band__wrap > div,
  .site-footer__grid > div {
    padding: 24px;
  }

  .metro-tile,
  .metro-tile--large {
    min-height: 240px;
  }

  .site-footer__bottom {
    font-size: 11px;
  }
}

/* PAGE HERO */
.page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,.08);
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media {
  background:
    url("assets/background.jpg") center center / cover no-repeat,
    linear-gradient(135deg, #0b141c 0%, #121a22 45%, #0a7fa9 75%, #d6b48a 100%);
  transform: scale(1.03);
}

.page-hero__overlay {
  background:
    linear-gradient(rgba(12,17,22,.62), rgba(12,17,22,.78)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.03) 0,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 160px
    );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 70px 0;
}

.page-hero__content h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.page-hero__content h1 span {
  color: var(--sand);
}

.page-hero__lead {
  max-width: 800px;
  margin: 24px auto 0;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.75;
  color: rgba(245,239,231,.86);
}

/* PRESTATIONS INTRO */
.prestations-intro {
  background: #131a21;
}

.prestations-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.prestations-intro__left,
.prestations-intro__right {
  min-height: 240px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prestations-intro__left {
  background: var(--black-soft);
  border-right: 1px solid rgba(255,255,255,.08);
}

.prestations-intro__left h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .95;
  text-transform: uppercase;
}

.prestations-intro__right {
  background: #0f151b;
}

.prestations-intro__right p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,239,231,.82);
}

/* SERVICES GRID */
.prestations-grid-section {
  background: var(--black);
  padding: 24px 0 34px;
}

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

.service-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.service-card--blue {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.service-card--sand {
  background: linear-gradient(135deg, var(--sand-deep), var(--sand));
  color: var(--text-dark);
}

.service-card--dark {
  background: linear-gradient(135deg, #151c24, #0f151b);
}

.service-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  opacity: .14;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: .98;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  max-width: 34ch;
}

.service-card__list {
  margin: 0;
  padding-left: 18px;
}

.service-card__list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* PROCESS */
.process-section {
  background: #10161d;
}

.process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.process-intro,
.process-steps {
  padding: 42px;
}

.process-intro {
  border-right: 1px solid rgba(255,255,255,.08);
}

.process-intro h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .95;
  text-transform: uppercase;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.process-step {
  min-height: 180px;
  background: #0f151b;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.08);
}

.process-step span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--sand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 26px;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: rgba(245,239,231,.8);
  line-height: 1.7;
}

/* CTA */
.prestations-cta {
  background: #0b1015;
}

.prestations-cta__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
}

.prestations-cta__wrap > div {
  padding: 42px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.08);
}

.prestations-cta__wrap > div:last-child {
  border-right: 0;
}

.prestations-cta__wrap h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  line-height: .98;
}

.prestations-cta__wrap p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,239,231,.82);
}

.prestations-cta__action {
  align-items: flex-start;
}

@media (max-width: 1100px) {
  .prestations-intro__grid,
  .prestations-grid,
  .process-grid,
  .prestations-cta__wrap {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .prestations-intro__left,
  .process-intro,
  .prestations-cta__wrap > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .prestations-cta__wrap > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .page-hero,
  .page-hero__content {
    min-height: 440px;
  }

  .prestations-intro__left,
  .prestations-intro__right,
  .process-intro,
  .process-steps,
  .prestations-cta__wrap > div {
    padding: 24px;
  }

  .service-card {
    min-height: 280px;
    padding: 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* REALISATIONS HERO */
.realisations-hero .page-hero__media {
  background:
    url("assets/background.jpg") center center / cover no-repeat,
    linear-gradient(135deg, #0b141c 0%, #121a22 45%, #0a7fa9 75%, #d6b48a 100%);
}

/* INTRO */
.realisations-intro {
  background: #131a21;
}

.realisations-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.realisations-intro__left,
.realisations-intro__right {
  min-height: 240px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.realisations-intro__left {
  background: var(--black-soft);
  border-right: 1px solid rgba(255,255,255,.08);
}

.realisations-intro__left h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .95;
  text-transform: uppercase;
}

.realisations-intro__right {
  background: #0f151b;
}

.realisations-intro__right p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,239,231,.82);
}

/* GALLERY */
.gallery-section {
  background: var(--black);
  padding: 24px 0 34px;
}

.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.gallery-toolbar h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .95;
  text-transform: uppercase;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-filter {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: #10161d;
  color: rgba(245,239,231,.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

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

.gallery-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #11181f;
}

.gallery-card__button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.gallery-card__image-wrap {
  position: absolute;
  inset: 0;
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.62)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.02) 0,
      rgba(255,255,255,.02) 1px,
      transparent 1px,
      transparent 160px
    );
}

.gallery-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: block;
}

.gallery-card__content strong {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: .98;
  text-transform: uppercase;
}

.gallery-card__content span:last-child {
  display: block;
  color: rgba(245,239,231,.86);
  line-height: 1.7;
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.06);
}

.gallery-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  background: #10161d;
  border: 1px solid rgba(255,255,255,.08);
}

/* CTA */
.realisations-cta {
  background: #10161d;
}

.realisations-cta__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
}

.realisations-cta__wrap > div {
  padding: 42px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.08);
}

.realisations-cta__wrap > div:last-child {
  border-right: 0;
}

.realisations-cta__wrap h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  line-height: .98;
}

.realisations-cta__wrap p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,239,231,.82);
}

.realisations-cta__action {
  align-items: flex-start;
}

/* MODAL */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  margin: 40px auto;
  background: #0f151b;
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  min-height: calc(100vh - 80px);
}

.gallery-modal__image-wrap {
  min-height: 100%;
  background: #0b1015;
}

.gallery-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-modal__meta {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.gallery-modal__meta h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .98;
  text-transform: uppercase;
}

.gallery-modal__meta p:last-child {
  margin: 0;
  color: rgba(245,239,231,.84);
  line-height: 1.8;
}

.gallery-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.gallery-modal__nav--prev {
  left: 16px;
}

.gallery-modal__nav--next {
  right: calc(35% + 16px);
}

@media (max-width: 1100px) {
  .realisations-intro__grid,
  .realisations-cta__wrap,
  .gallery-grid,
  .gallery-modal__dialog {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .realisations-intro__left,
  .realisations-cta__wrap > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .realisations-cta__wrap > div:last-child {
    border-bottom: 0;
  }

  .gallery-modal__dialog {
    min-height: auto;
    margin: 16px auto;
  }

  .gallery-modal__image-wrap {
    min-height: 50vh;
  }

  .gallery-modal__nav--next {
    right: 16px;
  }
}

@media (max-width: 700px) {
  .realisations-intro__left,
  .realisations-intro__right,
  .realisations-cta__wrap > div,
  .gallery-modal__meta {
    padding: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 280px;
  }

  .gallery-modal__image-wrap {
    min-height: 38vh;
  }
}

/* CONTACT HERO */
.contact-hero .page-hero__media {
  background:
    url("assets/background.jpg") center center / cover no-repeat,
    linear-gradient(135deg, #0b141c 0%, #121a22 45%, #0a7fa9 75%, #d6b48a 100%);
}

/* CONTACT INTRO */
.contact-intro {
  background: #131a21;
}

.contact-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.contact-intro__left,
.contact-intro__right {
  min-height: 240px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-intro__left {
  background: var(--black-soft);
  border-right: 1px solid rgba(255,255,255,.08);
}

.contact-intro__left h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .95;
  text-transform: uppercase;
}

.contact-intro__right {
  background: #0f151b;
}

.contact-intro__right p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,239,231,.82);
}

/* CONTACT SECTION */
.contact-section {
  background: var(--black);
  padding: 24px 0 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 16px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.contact-card--blue {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.contact-card--sand {
  background: linear-gradient(135deg, var(--sand-deep), var(--sand));
  color: var(--text-dark);
}

.contact-card--dark {
  background: linear-gradient(135deg, #151c24, #0f151b);
}

.contact-card__number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  opacity: .14;
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: .98;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.contact-card a,
.contact-card span {
  font-weight: 700;
  line-height: 1.6;
}

.contact-form-wrap {
  background: #10161d;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.08);
}

.contact-form-wrap h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .95;
  text-transform: uppercase;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.10);
  background: #0b1015;
  color: var(--white);
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245,239,231,.45);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
}

.form-field textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form__actions {
  margin-top: 22px;
}

/* CONTACT CTA */
.contact-cta {
  background: #10161d;
}

.contact-cta__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
}

.contact-cta__wrap > div {
  padding: 42px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.08);
}

.contact-cta__wrap > div:last-child {
  border-right: 0;
}

.contact-cta__wrap h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  line-height: .98;
}

.contact-cta__wrap p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245,239,231,.82);
}

.contact-cta__action {
  align-items: flex-start;
}

@media (max-width: 1100px) {
  .contact-intro__grid,
  .contact-layout,
  .contact-cta__wrap {
    grid-template-columns: 1fr;
  }

  .contact-intro__left,
  .contact-cta__wrap > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .contact-cta__wrap > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .contact-intro__left,
  .contact-intro__right,
  .contact-form-wrap,
  .contact-cta__wrap > div {
    padding: 24px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 200px;
    padding: 24px;
  }
}

/* ===== GALLERY GRID ===== */

.gallery-section {
  padding: 0;
  background: #0c1116;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* карточка */
.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* квадрат */
  overflow: hidden;
}

/* картинка */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ОБРЕЗКА ПО ЦЕНТРУ */
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

/* эффект наведения */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* затемнение */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  transition: 0.3s;
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.05);
}

/* ===== GALLERY GRID ===== */

.gallery-section {
  padding: 0;
  background: #0c1116;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* карточка */
.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* квадрат */
  overflow: hidden;
}

/* картинка */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ОБРЕЗКА ПО ЦЕНТРУ */
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

/* эффект наведения */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* затемнение */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  transition: 0.3s;
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.05);
}