:root {
 --primary-color: #151415;
 --secondary-color: #281E1E;
 --min-color: rgba(21, 20, 21, 0.50);
 --text-color: #ffffff;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, address, section, video, audio { 
 border: 0;
 font-size: 100%; 
 font-style: inherit; 
 outline: 0;
}
* {
 font-family: 'Manrope', sans-serif;
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-weight: 300;
 outline:none!important; 
}
body {
	-webkit-text-size-adjust: 100%;
 color: var(--primary-color);
 background: #ffffff;
 font-size: clamp(0.85rem, 1.111vw, 1rem);
 line-height: 1.2;
}
h1, h2, h3, h4, h5, h6 {
 text-align: left;
 margin-bottom: 40px;
 line-height: 1.2;
 color: var(--primary-color);
}
h2 {
 font-size: clamp(24px, 2.8vw, 40px);
 font-weight: 300;
 line-height: 1.2;
 margin-bottom: 60px;
 text-transform: uppercase;
}
iframe {
 max-width: 100%;
 display: block; 
 margin: auto;
}
a {
 text-decoration: none;
 color: inherit;
 cursor: pointer;
 transition: 0.3s;
}
ul li {
 list-style: none;
}
img {
 max-width: 100%; 
 display: block; 
 margin: auto;
}
strong { 
	font-weight: 700;
}
p {
 font-size: clamp(0.85rem, 1.111vw, 1rem);
 margin-bottom: 35px;
 font-weight: 400;
}
input, textarea, button {
 cursor: pointer;
}
.go a {
width: fit-content;
 font-size: inherit;
 text-align: center;
 font-weight: 400;
 display: block;
 padding: 14px 44px;
 border: 1px solid var(--text-color);
 color: var(--primary-color);
 text-transform: uppercase;
 letter-spacing: 1px;
 transition: all 0.3s;
 background: var(--text-color);
 cursor: pointer;
 border-radius: 2px;
}
.go a:hover {
 background: var(--primary-color);
 color: var(--text-color);
}
main {
  overflow: hidden;
}
section {
 padding: 6.5vw 4vw;
}
.min-title {
 font-size: clamp(0.85rem, 1.111vw, 1.2rem);
 text-transform: uppercase;
 color: var(--min-color);
 margin-bottom: 40px;
}
@media (max-width: 1050px) {
  p {
 margin-bottom: 20px;
  }
}

/* ===== ШАПКА ===== */
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 100;
 padding: 20px 3.158vw;
 display: flex;
 justify-content: space-between;
 align-items: center;
 transition: 0.3s;
}
.header.scrolled {
 background: rgba(21, 20, 21, 0.95);
 backdrop-filter: blur(10px);
}
.header-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 32vw;
}
.header-menu ul li {
 list-style: none;
}
.header-menu ul li a {
 text-transform: uppercase;
 color: var(--text-color);
}
.header-menu ul li a:hover {
 text-decoration: underline;
}
.logo {
 margin: 0px auto;
 width: 150px;
}
.header-menu {
 width: 40%;
}
.header-info {
 display: flex;
 gap: 20px;
 align-items: center;
 width: 40%;
 justify-content: end;
}
.lang-btn {
 color: var(--text-color)
}

.hero {
 background: url(/wp-content/uploads/2026/06/head.jpg) no-repeat 50% 100% / cover;
 position: relative;
 height: 100vh;
 min-height: 700px;
 display: flex;
 align-items: center;
 overflow: hidden;
 width: 100%;
 padding: 5vw 3vw;
}
.hero::before {
  content:'';
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-color);
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
}
.hero-content p {
  width: clamp(280px, 24vw, 500px);
  padding-right: 3vw;
}
.hero-content .go {
  width: 100%;
  padding-left: clamp(280px, 24vw, 500px);
}
.hero-title {
 display: flex;
 flex-direction: column;
}
.hero-title h1 {
 color: var(--text-color);
  font-size: clamp(30px, 3.25vw, 100px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.menu-btn,
.menu-conts {
  display: none;
}

@media (max-width: 1050px) {
.header {
  padding: 10px 3.158vw;
}
.header-info, 
.header-menu {
  display: none;
}
.hero {
  padding-bottom: 23vw;
}
.hero-title {
  order: 1;
}
.hero-content .go {
  padding: 0px;
  order: 3;
}
.hero-content p {
  width: 100%;
  padding: 0;
  order: 2;
}

.menu-btn {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 50px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 30px 5px 5px;
  gap: 10px;
  cursor: pointer;
  z-index: 2;
}
.menu-btn::before {
  content:'';
  width: 100%;
  height: 2px;
  background: var(--text-color);
  display: block;
  transition: 0.3s;
}
.menu-btn::after {
  content:'';
  width: 80%;
  height: 2px;
  background: var(--text-color);
  display: block;
  transition: 0.3s;
}
.menu-btn.active::before {
  width: 30px;
  transform: translate(0px, 11px) rotate(45deg);
}
.menu-btn.active::after {
  width: 30px;
  transform: rotate(-45deg);
}
.header-menu.active {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(21, 20, 21, 0.95);
  backdrop-filter: blur(10px);
  overflow: auto;
  max-height: calc(100vh - 90px);
}
.header-menu.active .menu-box {
  width: 100%;
  padding: 20px;
  height: 100%;
}
.header-menu.active ul {
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.header-menu.active ul li {
  margin: 10px 0px;
}
.header-menu.active ul li a {
  font-size: clamp(18px, 4vw, 40px);
}
.header-menu.active .menu-conts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.header-menu.active .menu-conts ul li a {
  font-size: clamp(16px, 3vw, 30px);
  font-weight: 200;
  text-transform: none;
}
.header-menu.active .menu-conts .go,
.header-menu.active .menu-conts .go a {
  width: 100%;
}
}




/* ===== БРЕНД ===== */
.about-title {
 margin-bottom: 80px;
}
.about-row {
  display: flex;
  justify-content: space-between;
}
.about-row .img {
 width: 65%;
}
.about-row .img img {
 margin: 0px 0px 0px auto;
 width: 500px;
}
.about-row .text {
 width: 21vw;
}

@media (max-width: 1050px) {
.about-title {
  margin-bottom: 30px;
}
.about-row {
  flex-direction: column;
}
.about-row .img {
  width: 100%;
  margin-bottom: 25px;
}
.about-row .text {
  width: 100%;
}
}


/* ===== КОВЁР ===== */
.rug-section {
 padding-top: 0px;
 display: flex;
 justify-content: space-between;
}
.rug-section .text {
 margin: 0px auto;
 width: 53%;
}
@media (max-width: 1050px) {
.rug-section {
  flex-direction: column;
}
.rug-section .text h2 {
  margin-bottom: 30px;
}
.rug-section .text h2 br {
  display: none;
}
.rug-section .text {
  width: 100%;
}
}




/* ===== СЕКЦИЯ ПРЕИМУЩЕСТВ ===== */
.features-section {
 background: url(/wp-content/uploads/2026/06/bg-scaled.jpg) no-repeat 50% 50% / cover;
 position: relative;
}
.features-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.features-wrap {
 margin: 0 auto;
 position: relative;
 z-index: 1;
}
.features-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
 position: relative;
}
.feature-item {
  background: rgb(255 255 255 / 90%);
  padding: 38px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 20vw;
  width: 100%;
  flex-shrink: 0;
}
.feature-item-1 {
  max-width: 22.105vw;
}
.feature-item-2 {
  margin-left: auto;
}
.feature-item-4 {
 margin-left: 20vw;
}
.feature-item-5 {
  max-width: 22.105vw;
  margin-left: auto;
}
.feature-title {
  font-size: clamp(1rem, 1.15vw, 1.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.feature-text {
  margin: 0;
}
.feature-big {
 grid-column: span 2;
 display: flex;
 align-items: center;
 justify-content: center;
 background: #ffffff;
}

@media (max-width: 1050px) {
.features-grid {
  gap: 15px;
  justify-content: center;
}
.feature-item {
  min-height: 200px;
  max-width: 100%;
  min-width: 280px;
  width: calc(50% - 15px);
  margin: 0;
  padding: 30px;
}
}

/* ===== ГАЛЕРЕЯ ===== */
.gallery-section {
 margin: 0 auto;
}
.gallery-num {
  position: absolute;
  top: 0px;
  right: -45px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
}
.gallery-grid {
 display: flex;
 flex-direction: column;
 position: relative;
}
.gallery-item {
 position: relative;
 overflow: hidden;
 display: flex;
 justify-content: space-between;
 gap: 20px;
 margin-bottom: 80px;
}
.gallery-item figure {
  margin: 0;
  position: relative;
  height: fit-content;
}
.gallery-item img {
 object-fit: cover;
 transition: 0.4s;
}
.gallery-item-1 figure {
 max-width: 67vw;
}

.gallery-item-2 figure:first-child {
  max-width: 47.368vw;
}
.gallery-item-2 figure:last-child {
  max-width: 23.684vw;
}
.gallery-item-2 figure:last-child .gallery-num {
  right: auto;
  top: calc(100% + 20px);
}

.gallery-item-3 {
  justify-content: center;
}
.gallery-item-3 figure {
  max-width: 23.684vw;
}
.gallery-item-3 figure:first-child .gallery-num {
  right: auto;
  left: -45px;
}

.gallery-item-4 {
  flex-direction: row-reverse;
  align-items: end;
  margin-bottom: 0;
}
.gallery-item-4 figure:first-child {
  max-width: 45vw;
}
.gallery-item-4 figure:last-child {
  max-width: 24vw;
}
.gallery-item-4 figure:first-child .gallery-num {
  right: auto;
  left: -45px;
}

@media (max-width: 1050px) {
.gallery-item figure:first-child .gallery-num, 
.gallery-item figure:last-child .gallery-num,
.gallery-item figure .gallery-num {
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin-top: 15px;
  display: block;
}
.gallery-item figure {
  max-width: 100%;
}
.gallery-item {
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-item figure:first-child, 
.gallery-item figure:last-child {
  max-width: 350px;
}
.gallery-item-1 figure:first-child {
  max-width: 720px;
}
.gallery-item-4 {
  flex-direction: row;
}
}


/* ===== ПРОЕКТЫ ===== */
.projects-section {
  padding-top: 0px;
  padding-bottom: 0px;
  display: flex;
}
.projects-section .name {
  width: 23.684vw;
}
.projects-section .text {
  width: 52.632vw;
}
.projects-section .go a {
  border-color: var(--primary-color);
}

@media (max-width: 1050px) {
.projects-section {
  flex-direction: column;
}
.projects-section h2 {
  margin-bottom: 30px;
}
.projects-section .name {
  width: 100%;
}
.projects-section .text {
  width: 100%;
}
}

/* ===== ЭТАПЫ РАБОТЫ ===== */
.steps-section {
  display: flex;
}
.steps-section .name {
  width: 23.684vw;
}
.steps-section .text {
  width: 66vw;
}
.step-item {
  position: relative;
 display: flex;
 padding: 30px 0;
 border-bottom: 1px solid rgba(21, 20, 21, 0.55);
}
.step-item span {
  font-size: clamp(0.85rem, 1.111vw, 1rem);
  font-weight: 400;
  width: 33.33%;
}
.step-item .step-num {
 flex-shrink: 0;
}
.step-item .step-name {
 font-size: clamp(0.9rem, 1.15vw, 1.5rem);
 text-transform: uppercase;
 flex-shrink: 0;
}
.step-item .step-desc {
 flex: 1;
}
@media (max-width: 1050px) {
.steps-section {
  flex-direction: column;
}
.steps-section .name {
  width: 100%;
}
.steps-section .text {
  width: 100%;
}
.step-item {
  padding: 30px 0 20px;
}
.step-item span {
  width: 50%;
}
.step-item .step-num {
  position: absolute;
  top: 10px;
  left: 0px;
}
}

/* ===== КОНТАКТЫ ===== */
.contact-section {
  background: url(/wp-content/uploads/2026/06/bgf-scaled.jpg) 50% 50% / cover no-repeat;
 position: relative;
 display: flex;
 align-items: center;
}
.contact-box {
  width: 55vw;
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  margin: 5vw auto;
  overflow: hidden;
}
.contact-box h2 {
  font-size: clamp(24px, 2vw, 32px);
  margin-bottom: auto;
}
.contact-box figure {
  width: 45%;
}
.contact-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-box-info {
  width: 52%;
  display: flex;
  flex-direction: column;
}
.contact-box .go a {
  border-color: var(--primary-color);
}
@media (max-width: 1050px) {
.contact-box {
  padding: 20px;
  margin: auto;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.contact-box-info {
  order: 1;
  padding: 20px 0px;
  width: 100%;
  max-width: 350px;
}
.contact-box figure {
  order: 2;
  width: 100%;
  max-width: 350px;
}
}

/* ===== ПОДВАЛ ===== */
.footer {
 background: var(--secondary-color);
 color: var(--text-color);
 padding: 80px 60px;
}
.footer-block {
  width: 33.33%;
}
.footer-wrap {
 margin: 0 auto;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.footer-wrap .logo {
  width: 100%;
  max-width: 260px;
}
.footer-wrap ul li {
  margin: 20px 0px;
}
.footer-wrap a {
  text-transform: uppercase;
  color: var(--text-color);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.111vw, 1rem);
}
.footer-bottom {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  margin: 0;
}
ul.socials {
  text-align: right;
}


@media (max-width: 1050px) {
.footer {
  padding: 30px 20px;
}
.footer p,
.footer a {
  opacity: 0.9;
  font-size: clamp(0.75rem, 1.111vw, 1rem);
}
.footer-wrap {
  flex-wrap: wrap;
}
.footer-block:nth-child(1) {
  order: 2;
  width: 60%;
}
.footer-block:nth-child(2) {
  order: 1;
  width: 100%;
}
.footer-block:nth-child(3) {
  order: 3;
  width: 40%;
}
.footer-wrap {
  flex-wrap: wrap;
}
.footer-wrap .logo {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.footer-bottom {
  padding-top: 10px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 15px;
}
}