* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f8f6f2;
  color: #1f1f1f;
  font-family: Arial, sans-serif;
}

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

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADER */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 34px 0;
}

.header-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
}

.logo-title {
  font-size: 36px;
  letter-spacing: 2px;
  color: #1E5078;
  line-height: 1;
}

.logo-subtitle {
  margin-top: 8px;
  max-width: 180px;
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #6f7478;
}

.nav {
  display: flex;
  gap: 34px;
  padding-top: 8px;
}

.nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1f2d3a;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 8px;
  margin-left: 25px;
}

.phone {
  font-size: 14px;
  font-weight: 700;
  color: #1E5078;
  white-space: nowrap;
}

.messenger-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1E5078;
  border-bottom: 1px solid rgba(30, 80, 120, 0.35);
  padding-bottom: 4px;
  transition: 0.3s;
}

.messenger-link:hover {
  color: #b89b5e;
  border-color: #b89b5e;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(248, 246, 242, 0.98) 0%,
      rgba(248, 246, 242, 0.9) 32%,
      rgba(248, 246, 242, 0.45) 58%,
      rgba(248, 246, 242, 0.08) 100%
    ),
    url("../images/hero/hero-bathroom.jpg");
  background-size: cover;
  background-position: center 20%;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(248, 246, 242, 0) 0%,
    #f8f6f2 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  font-size: 72px;
  max-width: 650px;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #20385f;
  margin-bottom: 32px;
}

.hero h1 span {
  color: #b89b5e;
}

.hero p {
  max-width: 520px;
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 42px;
}

.hero-buttons {
  display: flex;
  gap: 22px;
}

.btn {
  min-width: 210px;
  padding: 18px 28px;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  transition: 0.3s;
}

.btn-primary {
  background: #1E5078;
  color: #fff;
}

.btn-secondary {
  border: 1px solid #b89b5e;
  color: #9a7a36;
  background: rgba(248, 246, 242, 0.35);
}

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

/* MOBILE */

@media (max-width: 900px) {
  .header {
    position: relative;
    background: #f8f6f2;
  }

  .header-container {
    flex-direction: column;
    gap: 22px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .header-actions {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 120px;
    background-position: center right;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
/* CATEGORIES */

.categories {
  padding: 100px 0;
  background: #f8f6f2;
}

.section-title {
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 400;
  color: #20385f;
  text-transform: uppercase;
}

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

.category-card {
  display: block;
  background: #fff;
  overflow: hidden;
  transition: .3s;
  border-radius: 12px;
  box-shadow:
  0 10px 30px rgba(0,0,0,.05);
}

.category-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.category-card span {
  display: block;
  padding: 24px;
  font-size: 18px;
  color: #20385f;
}

.category-card:hover {
  transform: translateY(-6px);
}

/* SOLUTIONS */

.solutions {
  padding: 110px 0;
  background: #f8f6f2;
}

.solutions-container {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 60px;
  align-items: start;
}

.solutions-text h2 {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 400;
  color: #20385f;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.solutions-text h2 span {
  color: #b89b5e;
}

.solutions-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 36px;
}

.solutions-btn {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid #b89b5e;
  color: #9a7a36;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .8px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: none
}

.solution-item {
  background: #fff;
  padding: 35px;
  border: 1px solid rgba(184,155,94,.15);
}

.solution-icon {
  color: #b89b5e;
  font-size: 22px;
  margin-bottom: 30px;
}

.solution-item h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #20385f;
  margin-bottom: 18px;
}

.solution-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* ADVANTAGES */

.advantages {
  padding: 110px 0;
  background: #fff;
}

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

.advantage {
  background: #f8f6f2;
  padding: 30px;
  border: 1px solid rgba(184,155,94,.15);
  transition: 0.3s;
}

.advantage:hover {
  transform: translateY(-4px);
  transition: .3s;
}

.advantage h3 {
  color: #20385f;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.advantage p {
  color: #666;
  line-height: 1.6;
}

/* CONSULTATION */

.consultation {
  padding: 110px 0;
  background: #f8f6f2;
}

.consultation-container {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 60px;
}

.consultation-image {
  height: 340px;
  overflow: hidden;
}

.consultation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultation-content h2 {
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  color: #20385f;
  margin-bottom: 24px;
}

.consultation-content p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
}

.consultation-links {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
}

.consultation-links a {
  color: #1E5078;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.consultation-btn {
  display: inline-block;
  background: #1E5078;
  color: white;
  padding: 18px 34px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .8px;
}

/* SHOWROOM */

.showroom {
  padding: 110px 0;
  background: #fff;
}

.showroom-container {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 60px;
  align-items: stretch;
}

.showroom-content h2 {
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  color: #20385f;
  margin-bottom: 24px;
}

.showroom-content p {
  max-width: 470px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 36px;
}

.showroom-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #20385f;
  font-size: 17px;
}

.showroom-map{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.showroom-container {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 80px;
    align-items: center;
}

.showroom-map iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: none;
    border-radius: 20px;
}

/* FOOTER */

.footer{
    background:#f5f2ec;
    border-top:1px solid rgba(184,155,94,.2);
    margin-top:120px;
}

.footer .container{
    padding:80px 0 35px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1fr;
    gap:60px;
}

.footer-brand h2{
    font-size:60px;
    color:#1E5078;
    letter-spacing:3px;
    margin-bottom:18px;
}

.footer-brand p{
    color:#9a9a9a;
    line-height:1.7;
    max-width:260px;
}

.footer-social{
    margin-top:35px;
    display:flex;
    gap:22px;
}

.footer-social a{
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#b89b5e;
    transition:.3s;
}
.footer-social a:hover{
    color:#1E5078;
}

.footer-column h3{
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#1E5078;
    margin-bottom:22px;
}

.footer-column a,
.footer-column p{
    display:block;
    margin-bottom:14px;
    color:#666;
    line-height:1.6;
    transition:.3s;
}

.footer-column a:hover{
    color:#b89b5e;
}

.footer-bottom{
    margin-top:70px;
    padding-top:30px;
    border-top:1px solid rgba(184,155,94,.15);

    display:flex;
    justify-content:space-between;
    align-items:center;

    color:#8a8a8a;
    font-size:14px;
}

.showroom-info{
    margin-top:40px;
}

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.info-icon {
  min-width: 38px;
  height: 38px;
  border: 1px solid rgba(184,155,94,.45);
  color: #b89b5e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item p {
  margin: 0;
  line-height: 1.7;
  color: #30435c;
}