<!DOCTYPE html>
<html lang="ru">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>МИРТ — Ателье</title>
  <style>
    body {
      margin: 0;
      font-family: "Montserrat", sans-serif;
      color: #111;
      background: #fff;
    }
    header {
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 100;
    }
    header nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #111;
      font-weight: 500;
    }
    .hero {
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('https://source.unsplash.com/1600x900/?fashion,atelier') center/cover no-repeat;
      color: #fff;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      letter-spacing: 2px;
    }
    section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
    }
    section h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      text-align: center;
    }
    .services, .portfolio {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    .card {
      border: 1px solid #eee;
      padding: 20px;
      text-align: center;
      border-radius: 12px;
    }
    .portfolio img {
      width: 100%;
      border-radius: 12px;
    }
    .contact {
      text-align: center;
    }
    .contact p {
      font-size: 1.2rem;
    }
    footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
    }
    /* Мобильная адаптация */
    @media (max-width: 768px) {
      .hero h1 { font-size: 2rem; }
      section { padding: 40px 15px; }
    }
  </style>
</head>
<body>

<header>
  <div class="logo">МИРТ</div>
  <nav>
    <a href="#about">О нас</a>
    <a href="#services">Услуги</a>
    <a href="#portfolio">Портфолио</a>
    <a href="#contact">Контакты</a>
  </nav>
</header>

<div class="hero">
  <h1>Ателье МИРТ<br>Современная мода</h1>
</div>

<section id="about">
  <h2>О нас</h2>
  <p style="text-align:center; max-width:800px; margin:auto;">
    Ателье “МИРТ” — это место, где стиль встречается с мастерством.
    Мы создаём индивидуальные образы, подчеркивающие вашу уникальность.
  </p>
</section>

<section id="services">
  <h2>Наши услуги</h2>
  <div class="services">
    <div class="card">Пошив одежды на заказ</div>
    <div class="card">Индивидуальные лекала</div>
    <div class="card">Ремонт и реставрация</div>
    <div class="card">Консультация стилиста</div>
  </div>
</section>

<section id="portfolio">
  <h2>Портфолио</h2>
  <div class="portfolio">
    <img src="https://source.unsplash.com/600x800/?dress" alt="">
    <img src="https://source.unsplash.com/600x800/?fashion" alt="">
    <img src="https://source.unsplash.com/600x800/?model" alt="">
    <img src="https://source.unsplash.com/600x800/?couture" alt="">
  </div>
</section>

<section id="contact" class="contact">
  <h2>Контакты</h2>
  <p>Телефон: +7 (999) 123-45-67</p>
  <p>Email: info@mirt.ru</p>
  <p>г. Краснодар, ул. Примерная, 10</p>
</section>

<footer>
  © 2025 Ателье “МИРТ”. Все права защищены.
</footer>

</body>
</html>