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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #050609;
      color: #f5f5f5;
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(5, 6, 9, 0.96);
      border-bottom: 1px solid #262932;
      backdrop-filter: blur(10px);
    }

    .nav-inner {
      max-width: 960px;
      margin: 0 auto;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 13px;
      color: #f6f0e6;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 11px;
      background: #f6a623;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      color: #111111;
      box-shadow: 0 0 0 1px #f6a62355, 0 8px 16px rgba(0,0,0,.7);
    }

    nav a {
      margin-left: 24px;
      font-size: 14px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #f4e0c3;
      opacity: 0.8;
      transition: opacity .18s ease;
    }
    nav a:hover { opacity: 1; }

    main {
      max-width: 720px;
      margin: 0 auto;
      padding: 40px 20px 60px;
    }

    section {
      padding: 40px 0;
      border-bottom: 1px solid #181b24;
    }

    .hero {
      text-align: center;
      padding-top: 32px;
    }

    .hero h1 {
      font-size: 40px;
      margin-bottom: 18px;
      color: #ffe0a4;
    }

    .hero p {
      font-size: 18px;
      max-width: 560px;
      margin: 0 auto;
      color: #d0c4b2;
    }

    .tagline {
      margin-top: 10px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #f6a623;
    }

    h2 {
      font-size: 26px;
      margin-bottom: 16px;
      text-align: center;
      color: #ffe0a4;
    }

    .section-text {
      font-size: 16px;
      color: #d5cab8;
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .contact-block {
      text-align: center;
      font-size: 15px;
      color: #d5cab8;
    }
    .contact-block a {
      color: #f6a623;
      text-decoration: none;
      border-bottom: 1px dashed #f6a623;
    }
    .contact-block a:hover {
      opacity: 0.85;
    }

    footer {
      text-align: center;
      font-size: 12px;
      color: #7c7060;
      padding: 22px;
    }

    @media (max-width: 600px) {
      .nav-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
      nav { width: 100%; }
      nav a { margin-left: 0; margin-right: 16px; }
      .hero h1 { font-size: 32px; }
    }
